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
3c0a09bf
Commit
3c0a09bf
authored
Oct 08, 2014
by
Gavin Bisesi
Browse files
Merge pull request #361 from woogerboy21/servatrice-dbtable-fix
correct _room db table, add _rooms_gametypes table
parents
602fa253
9cd1a5b3
Changes
1
Hide whitespace changes
Inline
Side-by-side
servatrice/servatrice.sql
View file @
3c0a09bf
-- phpMyAdmin SQL Dump
-- phpMyAdmin SQL Dump
-- version 2.11.8.1deb1ubuntu0.2
-- http://www.phpmyadmin.net
--
...
...
@@ -212,8 +212,14 @@ 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
,
`auto
_
join`
tinyint
(
1
)
default
0
,
`join_message`
varchar
(
255
)
NOT
NULL
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
;
CREATE
TABLE
IF
NOT
EXISTS
`cockatrice_rooms_gametypes`
(
`id_room`
int
(
7
)
unsigned
NOT
NULL
,
`name`
varchar
(
50
)
NOT
NULL
,
PRIMARY
KEY
(
`id_room`
)
)
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