airships.sql 228 B

12345
  1. CREATE TABLE IF NOT EXISTS `airships` (
  2. `owner_id` INT, -- object id of the player or clan, owner of this airship
  3. `fuel` decimal(5,0) NOT NULL DEFAULT 600,
  4. PRIMARY KEY (`owner_id`)
  5. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;