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
0d35488c
Commit
0d35488c
authored
Oct 06, 2014
by
Fabio Bas
Browse files
Added schema for _rooms table
parent
01bd26d2
Changes
1
Show whitespace changes
Inline
Side-by-side
servatrice/servatrice.sql
View file @
0d35488c
...
@@ -208,3 +208,12 @@ CREATE TABLE `cockatrice_replays_access` (
...
@@ -208,3 +208,12 @@ CREATE TABLE `cockatrice_replays_access` (
KEY
`id_game`
(
`id_game`
)
KEY
`id_game`
(
`id_game`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
;
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
;
CREATE
TABLE
IF
NOT
EXISTS
`cockatrice_rooms`
(
`id`
int
(
7
)
unsigned
NOT
NULL
auto_increment
,
`name`
varchar
(
50
)
NOT
NULL
,
`descr`
varchar
(
255
)
NOT
NULL
,
`autojoin`
tinyint
(
1
)
default
0
,
`join_message`
varchar
(
255
)
NOT
NULL
,
PRIMARY
KEY
(
`id`
)
)
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