Advertisement
chr2trance

aCis r314

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