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
9cd1a5b3
Commit
9cd1a5b3
authored
Oct 07, 2014
by
woogerboy21
Browse files
correct _room db table, add _rooms_gametypes table
Corrected table column in _rooms db table and added _rooms_gametypes table.
parent
faa66e4d
Changes
1
Hide whitespace changes
Inline
Side-by-side
servatrice/servatrice.sql
View file @
9cd1a5b3
-- phpMyAdmin SQL Dump
-- phpMyAdmin SQL Dump
-- version 2.11.8.1deb1ubuntu0.2
-- version 2.11.8.1deb1ubuntu0.2
-- http://www.phpmyadmin.net
-- http://www.phpmyadmin.net
--
--
...
@@ -212,8 +212,14 @@ CREATE TABLE IF NOT EXISTS `cockatrice_rooms` (
...
@@ -212,8 +212,14 @@ CREATE TABLE IF NOT EXISTS `cockatrice_rooms` (
`id`
int
(
7
)
unsigned
NOT
NULL
auto_increment
,
`id`
int
(
7
)
unsigned
NOT
NULL
auto_increment
,
`name`
varchar
(
50
)
NOT
NULL
,
`name`
varchar
(
50
)
NOT
NULL
,
`descr`
varchar
(
255
)
NOT
NULL
,
`descr`
varchar
(
255
)
NOT
NULL
,
`autojoin`
tinyint
(
1
)
default
0
,
`auto
_
join`
tinyint
(
1
)
default
0
,
`join_message`
varchar
(
255
)
NOT
NULL
,
`join_message`
varchar
(
255
)
NOT
NULL
,
PRIMARY
KEY
(
`id`
)
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
;
)
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