Database Installer.
This commit is contained in:
9
trunk/dist/db_installer/sql/login/gameservers.sql
vendored
Normal file
9
trunk/dist/db_installer/sql/login/gameservers.sql
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
DROP TABLE IF EXISTS `gameservers`;
|
||||
CREATE TABLE IF NOT EXISTS `gameservers` (
|
||||
`server_id` int(11) NOT NULL DEFAULT '0',
|
||||
`hexid` varchar(50) NOT NULL DEFAULT '',
|
||||
`host` varchar(50) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`server_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
INSERT INTO `gameservers` VALUES ('14', '-2ad66b3f483c22be097019f55c8abdf0', '');
|
Reference in New Issue
Block a user