clanhall.sql 4.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. CREATE TABLE IF NOT EXISTS `clanhall` (
  2. `id` int(11) NOT NULL DEFAULT '0',
  3. `name` varchar(40) NOT NULL DEFAULT '',
  4. `ownerId` int(11) NOT NULL DEFAULT '0',
  5. `lease` int(10) NOT NULL DEFAULT '0',
  6. `desc` text NOT NULL,
  7. `location` varchar(15) NOT NULL DEFAULT '',
  8. `paidUntil` bigint(13) unsigned NOT NULL DEFAULT '0',
  9. `Grade` decimal(1,0) NOT NULL DEFAULT '0',
  10. `paid` int( 1 ) NOT NULL DEFAULT '0',
  11. PRIMARY KEY `id` (`id`),
  12. KEY `ownerId` (`ownerId`)
  13. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  14. INSERT IGNORE INTO `clanhall` VALUES
  15. ('22','Moonstone Hall','0','500000','Clan hall located in the Town of Gludio','Gludio','0','2','0'),
  16. ('23','Onyx Hall','0','500000','Clan hall located in the Town of Gludio','Gludio','0','2','0'),
  17. ('24','Topaz Hall','0','500000','Clan hall located in the Town of Gludio','Gludio','0','2','0'),
  18. ('25','Ruby Hall','0','500000','Clan hall located in the Town of Gludio','Gludio','0','2','0'),
  19. ('26','Crystal Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
  20. ('27','Onyx Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
  21. ('28','Sapphire Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
  22. ('29','Moonstone Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
  23. ('30','Emerald Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
  24. ('31','The Atramental Barracks','0','200000','Clan hall located in the Town of Dion','Dion','0','1','0'),
  25. ('32','The Scarlet Barracks','0','200000','Clan hall located in the Town of Dion','Dion','0','1','0'),
  26. ('33','The Viridian Barracks','0','200000','Clan hall located in the Town of Dion','Dion','0','1','0'),
  27. ('36','The Golden Chamber','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
  28. ('37','The Silver Chamber','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
  29. ('38','The Mithril Chamber','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
  30. ('39','Silver Manor','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
  31. ('40','Gold Manor','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
  32. ('41','The Bronze Chamber','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
  33. ('42','The Golden Chamber','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0'),
  34. ('43','The Silver Chamber','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0'),
  35. ('44','The Mithril Chamber','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0'),
  36. ('45','The Bronze Chamber','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0'),
  37. ('46','Silver Manor','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0'),
  38. ('47','Moonstone Hall','0','1000000','Clan hall located in the Town of Goddard','Goddard','0','3','0'),
  39. ('48','Onyx Hall','0','1000000','Clan hall located in the Town of Goddard','Goddard','0','3','0'),
  40. ('49','Emerald Hall','0','1000000','Clan hall located in the Town of Goddard','Goddard','0','3','0'),
  41. ('50','Sapphire Hall','0','1000000','Clan hall located in the Town of Goddard','Goddard','0','3','0'),
  42. ('51','Mont Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
  43. ('52','Astaire Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
  44. ('53','Aria Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
  45. ('54','Yiana Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
  46. ('55','Roien Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
  47. ('56','Luna Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
  48. ('57','Traban Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
  49. ('58','Eisen Hall','0','500000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0'),
  50. ('59','Heavy Metal Hall','0','500000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0'),
  51. ('60','Molten Ore Hall','0','500000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0'),
  52. ('61','Titan Hall','0','500000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0');