Advertisement
blackwolfsden

GW Sql DB

Mar 16th, 2013
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. -- --------------------------------------------------------
  2. -- Host: 127.0.0.1
  3. -- Server version: 5.5.9-log - MySQL Community Server (GPL)
  4. -- Server OS: Win32
  5. -- HeidiSQL version: 7.0.0.4053
  6. -- Date/time: 2013-12-19 18:56:46
  7. -- --------------------------------------------------------
  8.  
  9. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  10. /*!40101 SET NAMES utf8 */;
  11. /*!40014 SET FOREIGN_KEY_CHECKS=0 */;
  12.  
  13. -- Dumping database structure for guild_warz
  14. DROP DATABASE IF EXISTS `guild_warz`;
  15. CREATE DATABASE IF NOT EXISTS `guild_warz` /*!40100 DEFAULT CHARACTER SET latin1 */;
  16. USE `guild_warz`;
  17.  
  18.  
  19. -- Dumping structure for table guild_warz.zones
  20. DROP TABLE IF EXISTS `zones`;
  21. CREATE TABLE IF NOT EXISTS `zones` (
  22. `entry` bigint(10) NOT NULL AUTO_INCREMENT,
  23. `map_id` bigint(10) unsigned DEFAULT '0',
  24. `area_id` bigint(10) unsigned DEFAULT '0',
  25. `zone_id` bigint(10) unsigned DEFAULT '0',
  26. `guild_name` varchar(50) NOT NULL,
  27. `team` smallint(10) unsigned NOT NULL DEFAULT '0',
  28. `x` float NOT NULL DEFAULT '0',
  29. `y` float NOT NULL DEFAULT '0',
  30. `z` float NOT NULL DEFAULT '0',
  31. `building_count` tinyint(10) unsigned NOT NULL DEFAULT '0',
  32. `pig_count` tinyint(10) unsigned NOT NULL DEFAULT '0',
  33. `guard_count` tinyint(10) unsigned NOT NULL DEFAULT '0',
  34. `flag_id` bigint(20) NOT NULL DEFAULT '0',
  35. PRIMARY KEY (`entry`),
  36. UNIQUE KEY `entry` (`entry`)
  37. ) ENGINE=InnoDB AUTO_INCREMENT=829 DEFAULT CHARSET=latin1;
  38.  
  39. -- Dumping data for table guild_warz.zones: ~1 rows (approximately)
  40. DELETE FROM `zones`;
  41. /*!40000 ALTER TABLE `zones` DISABLE KEYS */;
  42. INSERT INTO `zones` (`entry`, `map_id`, `area_id`, `zone_id`, `guild_name`, `team`, `x`, `y`, `z`, `building_count`, `pig_count`, `guard_count`, `flag_id`) VALUES
  43. (1, 0, 0, 0, 'SERVER', 0, 0, 0, 0, 0, 0, 0, 0);
  44. /*!40000 ALTER TABLE `zones` ENABLE KEYS */;
  45. /*!40014 SET FOREIGN_KEY_CHECKS=1 */;
  46. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement