Guest User

Untitled

a guest
Apr 26th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. # --------------------------------------------------------
  2. # Host: 127.0.0.1
  3. # Server version: 5.6.2-m5
  4. # Server OS: Win32
  5. # HeidiSQL version: 6.0.0.3603
  6. # Date/time: 2011-12-11 20:38:21
  7. # --------------------------------------------------------
  8.  
  9. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  10. /*!40101 SET NAMES utf8 */;
  11. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  12. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  13.  
  14. # Dumping structure for table tril_world.guild_xp_for_level
  15. DROP TABLE IF EXISTS `guild_xp_for_level`;
  16. CREATE TABLE IF NOT EXISTS `guild_xp_for_level` (
  17. `lvl` int(11) NOT NULL,
  18. `xp_for_next_level` bigint(20) NOT NULL
  19. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  20.  
  21. # Data exporting was unselected.
  22. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  23. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  24. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
Add Comment
Please, Sign In to add comment