Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 9ef6e363 authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

- added database creation instructions

parent 50511826
No related branches found
No related tags found
No related merge requests found
#
# Create the database. If you change any value here, report
# the changes in the DBInfo.php file.
#
CREATE DATABASE AServDB;
#
# Create a MySQL user. Change 'localhost' to the name of the server
# that hosts MySQL.
#
GRANT ALL PRIVILEGES ON AServDB.* TO adminAServ@localhost
IDENTIFIED BY 'aaa345';
#
# Create a MySQL user with restricted right for SQL queries
#
GRANT select ON AServ.* TO alignserver@localhost IDENTIFIED BY 'adf342';
// alignment info // alignment info
create table alignment ( create table alignment (
id varchar(50), id varchar(100),
owlontology1 varchar(100), owlontology1 varchar(100),
owlontology2 varchar(100), owlontology2 varchar(100),
type varchar(5), type varchar(5),
...@@ -15,7 +36,7 @@ create table alignment ( ...@@ -15,7 +36,7 @@ create table alignment (
// cell info // cell info
create table cell( create table cell(
id varchar(50), id varchar(100),
cell_id varchar(20), cell_id varchar(20),
uri1 varchar(100), uri1 varchar(100),
uri2 varchar(100), uri2 varchar(100),
...@@ -27,6 +48,6 @@ create table cell( ...@@ -27,6 +48,6 @@ create table cell(
// cell method // cell method
create table method( create table method(
id varchar(50), id varchar(100),
tag varchar(20), tag varchar(20),
extension varchar(100)); extension varchar(100));
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment