Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Donald Haase
Cockatrice
Commits
950fc013
Commit
950fc013
authored
Oct 24, 2014
by
woogerboy21
Browse files
Correct gametype primary key
Updated rooms_gametype to reflect proper column as primary key.
parent
07cccda1
Changes
1
Hide whitespace changes
Inline
Side-by-side
servatrice/servatrice.sql
View file @
950fc013
...
@@ -220,6 +220,6 @@ PRIMARY KEY (`id`)
...
@@ -220,6 +220,6 @@ PRIMARY KEY (`id`)
CREATE
TABLE
IF
NOT
EXISTS
`cockatrice_rooms_gametypes`
(
CREATE
TABLE
IF
NOT
EXISTS
`cockatrice_rooms_gametypes`
(
`id_room`
int
(
7
)
unsigned
NOT
NULL
,
`id_room`
int
(
7
)
unsigned
NOT
NULL
,
`name`
varchar
(
50
)
NOT
NULL
,
`name`
varchar
(
50
)
NOT
NULL
,
PRIMARY
KEY
(
`
id_room
`
)
PRIMARY
KEY
(
`
name
`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
;
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
;
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment