Created
June 17, 2016 07:10
-
-
Save Langerz82/7ee514dccf25a9f0e0428f66f80f1609 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- -------------------------------------------------------- | |
-- Host: 127.0.0.1 | |
-- Server version: 10.1.10-MariaDB - mariadb.org binary distribution | |
-- Server OS: Win32 | |
-- HeidiSQL Version: 9.3.0.4984 | |
-- -------------------------------------------------------- | |
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
/*!40101 SET NAMES utf8mb4 */; | |
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; | |
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; | |
-- Dumping database structure for db_mmofps | |
CREATE DATABASE IF NOT EXISTS `db_mmofps` /*!40100 DEFAULT CHARACTER SET utf8 */; | |
USE `db_mmofps`; | |
-- Dumping structure for table db_mmofps.character | |
CREATE TABLE IF NOT EXISTS `character` ( | |
`idusers` int(10) unsigned NOT NULL, | |
`experience` int(10) unsigned NOT NULL, | |
`strength` tinyint(3) unsigned NOT NULL, | |
`dexterity` tinyint(3) unsigned NOT NULL, | |
`constitution` tinyint(3) unsigned NOT NULL, | |
`intelligence` tinyint(3) unsigned NOT NULL, | |
`wisdom` tinyint(3) unsigned NOT NULL, | |
`charisma` tinyint(3) unsigned NOT NULL, | |
PRIMARY KEY (`idusers`) | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | |
-- Data exporting was unselected. | |
-- Dumping structure for table db_mmofps.users | |
CREATE TABLE IF NOT EXISTS `users` ( | |
`idusers` int(10) unsigned NOT NULL AUTO_INCREMENT, | |
`username` varchar(50) NOT NULL DEFAULT '0', | |
`networkid` varchar(50) NOT NULL DEFAULT '0', | |
PRIMARY KEY (`idusers`) | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; | |
-- Data exporting was unselected. | |
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */; | |
/*!40014 SET FOREIGN_KEY_CHECKS=IF(@OLD_FOREIGN_KEY_CHECKS IS NULL, 1, @OLD_FOREIGN_KEY_CHECKS) */; | |
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment