fort_doorupgrade.sql 302 B

12345678
  1. CREATE TABLE IF NOT EXISTS `fort_doorupgrade` (
  2. `doorId` int(11) NOT NULL DEFAULT '0',
  3. `fortId` int(11) NOT NULL,
  4. `hp` int(11) NOT NULL DEFAULT '0',
  5. `pDef` int(11) NOT NULL DEFAULT '0',
  6. `mDef` int(11) NOT NULL DEFAULT '0',
  7. PRIMARY KEY (`doorId`)
  8. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;