Skip to content
Snippets Groups Projects
Select Git revision
  • 56c23462b4a59b3fae7da220315fb2b344892164
  • develop default protected
2 results

airships.sql

Blame
  • airships.sql 228 B
    CREATE TABLE IF NOT EXISTS `airships` (
      `owner_id` INT, -- object id of the player or clan, owner of this airship
      `fuel` decimal(5,0) NOT NULL DEFAULT 600,
      PRIMARY KEY (`owner_id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;