merchant_lease.sql 308 B

12345678
  1. CREATE TABLE IF NOT EXISTS `merchant_lease` (
  2. `merchant_id` int(11) NOT NULL DEFAULT 0,
  3. `player_id` int(11) NOT NULL DEFAULT 0,
  4. `bid` int(11),
  5. `type` int(11) NOT NULL DEFAULT 0,
  6. `player_name` varchar(35),
  7. PRIMARY KEY (`merchant_id`,`player_id`,`type`)
  8. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;