fortsiege_clans.sql 350 B

12345678910
  1. -- ----------------------------
  2. -- Table structure for fortsiege_clans
  3. -- ----------------------------
  4. CREATE TABLE IF NOT EXISTS `fortsiege_clans` (
  5. `fort_id` int(1) NOT NULL default '0',
  6. `clan_id` int(11) NOT NULL default '0',
  7. `type` int(1) default NULL,
  8. `fort_owner` int(1) default NULL,
  9. PRIMARY KEY (`clan_id`,`fort_id`)
  10. ) ;