merchant_lease.sql 368 B

1234567891011
  1. -- ----------------------------
  2. -- Table structure for leasing merchants
  3. -- ----------------------------
  4. CREATE TABLE IF NOT EXISTS merchant_lease (
  5. merchant_id int(11) NOT NULL default 0,
  6. player_id int(11) NOT NULL default 0,
  7. bid int(11),
  8. `type` int(11) NOT NULL default 0,
  9. player_name varchar(35),
  10. PRIMARY KEY (merchant_id,player_id,`type`)
  11. );