Database Installer.
This commit is contained in:
7
trunk/dist/db_installer/sql/game/castle_trapupgrade.sql
vendored
Normal file
7
trunk/dist/db_installer/sql/game/castle_trapupgrade.sql
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
DROP TABLE IF EXISTS `castle_trapupgrade`;
|
||||
CREATE TABLE IF NOT EXISTS `castle_trapupgrade` (
|
||||
`castleId` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`towerIndex` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`level` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`towerIndex`,`castleId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
Reference in New Issue
Block a user