Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
Database
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MediaDB_V2
Database
Commits
9614fad3
Commit
9614fad3
authored
Feb 14, 2018
by
Nico Schallehn
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RC4 Database
parent
fedb6e49
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
MediaDB2.mwb
MediaDB2.mwb
+0
-0
MediaDB2.sql
MediaDB2.sql
+3
-3
No files found.
MediaDB2.mwb
View file @
9614fad3
No preview for this file type
MediaDB2.sql
View file @
9614fad3
...
...
@@ -175,8 +175,8 @@ DROP TABLE IF EXISTS `MediaDB2`.`Roles` ;
SHOW
WARNINGS
;
CREATE
TABLE
IF
NOT
EXISTS
`MediaDB2`
.
`Roles`
(
`role_ID`
INT
NOT
NULL
,
`role`
VARCHAR
(
45
)
NULL
,
`role_ID`
VARCHAR
(
9
)
NOT
NULL
,
`role`
VARCHAR
(
90
)
NULL
,
PRIMARY
KEY
(
`role_ID`
),
UNIQUE
INDEX
`role_ID_UNIQUE`
(
`role_ID`
ASC
))
ENGINE
=
InnoDB
;
...
...
@@ -192,7 +192,7 @@ SHOW WARNINGS;
CREATE
TABLE
IF
NOT
EXISTS
`MediaDB2`
.
`MediaObjectPersons`
(
`imdb_id`
VARCHAR
(
9
)
NULL
,
`actor_id`
VARCHAR
(
9
)
NULL
,
`role_id`
INT
NULL
,
`role_id`
VARCHAR
(
9
)
NULL
,
`role`
VARCHAR
(
255
)
NULL
,
`Typ`
ENUM
(
'actor'
,
'director'
,
'writer'
)
NULL
,
INDEX
`imdb_id_idx`
(
`imdb_id`
ASC
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment