custom_merchant_shopids.sql 276 B

123456789
  1. --
  2. -- Table structure for table `custom_merchant_shopids`
  3. --
  4. DROP TABLE IF EXISTS custom_merchant_shopids;
  5. CREATE TABLE custom_merchant_shopids (
  6. shop_id decimal(9,0) NOT NULL default '0',
  7. npc_id varchar(9) default NULL,
  8. PRIMARY KEY (shop_id)
  9. ) ENGINE=MyISAM;