character_house_history.sql 467 B

12345678910
  1. CREATE TABLE `character_house_history` (
  2. `timestamp` int(10) unsigned NOT NULL DEFAULT 0,
  3. `house_id` int(10) unsigned NOT NULL DEFAULT 0,
  4. `instance_id` int(10) unsigned NOT NULL DEFAULT 0,
  5. `name` varchar(64) not null default '',
  6. `reason` varchar(64) not null default '',
  7. `amount` bigint unsigned NOT NULL DEFAULT 0,
  8. `status` int(10) unsigned NOT NULL DEFAULT 0,
  9. `pos_flag` tinyint(1) unsigned NOT NULL DEFAULT 0
  10. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;