Advertisement
Guest User

Gossip_Menus

a guest
Jul 8th, 2012
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 1.48 KB | None | 0 0
  1. -- --------------------------------------------------------
  2. -- Host:                         127.0.0.1
  3. -- Server version:               5.5.9 - MySQL Community Server (GPL)
  4. -- Server OS:                    Win32
  5. -- HeidiSQL version:             7.0.0.4053
  6. -- Date/time:                    2012-07-08 15:13:01
  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 arc_world
  14. CREATE DATABASE IF NOT EXISTS `arc_world` /*!40100 DEFAULT CHARACTER SET latin1 */;
  15. USE `arc_world`;
  16.  
  17.  
  18. -- Dumping structure for table arc_world.gossip_menus
  19. CREATE TABLE IF NOT EXISTS `gossip_menus` (
  20.   `entry` INT(10) UNSIGNED NOT NULL DEFAULT '0',
  21.   `MenuId` SMALLINT(10) UNSIGNED NOT NULL DEFAULT '0',
  22.   `Name` VARCHAR(50) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
  23.   `IconId` SMALLINT(10) UNSIGNED NOT NULL DEFAULT '0',
  24.   `NextMenuId` SMALLINT(10) UNSIGNED NOT NULL DEFAULT '0',
  25.   PRIMARY KEY (`entry`)
  26. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  27.  
  28. -- Dumping data for table arc_world.gossip_menus: 9 rows
  29. /*!40000 ALTER TABLE `gossip_menus` DISABLE KEYS */;
  30. INSERT INTO `gossip_menus` (`entry`, `MenuId`, `Name`, `IconId`, `NextMenuId`) VALUES
  31.     (0, 0, 'Menu 1', 0, 1),
  32. /*!40000 ALTER TABLE `gossip_menus` ENABLE KEYS */;
  33. /*!40014 SET FOREIGN_KEY_CHECKS=1 */;
  34. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement