EQ2EMu/DB/updates/character_house_history.sql
2020-06-19 22:45:35 -04:00

10 lines
No EOL
467 B
SQL

CREATE TABLE `character_house_history` (
`timestamp` int(10) unsigned NOT NULL DEFAULT 0,
`house_id` int(10) unsigned NOT NULL DEFAULT 0,
`instance_id` int(10) unsigned NOT NULL DEFAULT 0,
`name` varchar(64) not null default '',
`reason` varchar(64) not null default '',
`amount` bigint unsigned NOT NULL DEFAULT 0,
`status` int(10) unsigned NOT NULL DEFAULT 0,
`pos_flag` tinyint(1) unsigned NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=latin1;