Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Alignment API
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
moex
Alignment API
Commits
9ef6e363
Commit
9ef6e363
authored
18 years ago
by
Jérôme Euzenat
Browse files
Options
Downloads
Patches
Plain Diff
- added database creation instructions
parent
50511826
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/fr/inrialpes/exmo/align/service/dbschema.sql
+25
-4
25 additions, 4 deletions
src/fr/inrialpes/exmo/align/service/dbschema.sql
with
25 additions
and
4 deletions
src/fr/inrialpes/exmo/align/service/dbschema.sql
+
25
−
4
View file @
9ef6e363
#
#
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
(
5
0
),
id
varchar
(
10
0
),
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
(
5
0
),
id
varchar
(
10
0
),
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
(
5
0
),
id
varchar
(
10
0
),
tag
varchar
(
20
),
tag
varchar
(
20
),
extension
varchar
(
100
));
extension
varchar
(
100
));
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment