Add 'Open_L1/db/sql/init.sh'
This commit is contained in:
parent
1965b820ca
commit
e630feeb9b
|
@ -0,0 +1,9 @@
|
|||
DROP TABLE IF EXISTS `castles`;
|
||||
CREATE TABLE `castles` (
|
||||
`id` tinyint(3) unsigned NOT NULL,
|
||||
`name` varchar(255) DEFAULT NULL,
|
||||
`war_time` datetime DEFAULT NULL,
|
||||
`tax_rate` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`public_money` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
Loading…
Reference in New Issue