Advertisement
chr2trance

aCis r313

Oct 17th, 2013
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.35 KB | None | 0 0
  1. SET FOREIGN_KEY_CHECKS=0;
  2.  
  3. DROP TABLE IF EXISTS `castle_trapupgrade`;
  4. CREATE TABLE `castle_trapupgrade` (
  5.   `castleId` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
  6.   `towerIndex` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
  7.   `level` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
  8.   PRIMARY KEY (`towerIndex`,`castleId`)
  9. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement