mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-11 17:59:02 +00:00
91e6b23d3f
NMAKE-VS2012 Error LNK2011 while NMAKE-VS2010 does not complain we need to link the pch.obj file see http://msdn.microsoft.com/en-us/library/3ay26wa2(v=vs.110).aspx ** PCH Support for Ninja Ninja need to add property OBJECT_DEPENDS for using PCH OBJECT_OUTPUTS for create PCH see http://public.kitware.com/pipermail/cmake-developers/2012-March/003653.html
40 lines
1.6 KiB
SQL
40 lines
1.6 KiB
SQL
-- --------------------------------------------------------
|
|
-- Host: 178.33.225.92
|
|
-- Server version: 5.5.28-0ubuntu0.12.04.2-log - (Ubuntu)
|
|
-- Server OS: debian-linux-gnu
|
|
-- HeidiSQL version: 7.0.0.4053
|
|
-- Date/time: 2013-02-12 16:14:54
|
|
-- --------------------------------------------------------
|
|
|
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET NAMES utf8 */;
|
|
/*!40014 SET FOREIGN_KEY_CHECKS=0 */;
|
|
|
|
-- Dumping database structure for webig
|
|
CREATE DATABASE IF NOT EXISTS `webig` /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_bin */;
|
|
USE `webig`;
|
|
|
|
|
|
-- Dumping structure for table webig.players
|
|
CREATE TABLE IF NOT EXISTS `players` (
|
|
`id` INT(32) NOT NULL AUTO_INCREMENT,
|
|
`cid` INT(32) NOT NULL DEFAULT '0',
|
|
`name` VARCHAR(50) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL DEFAULT '0',
|
|
`gender` INT(1) NOT NULL DEFAULT '0',
|
|
`creation_date` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
`deleted` tinyint(1) NOT NULL DEFAULT '0',
|
|
`last_login` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00',
|
|
`dev_shard` tinyint(4) NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
|
|
|
-- Dumping structure for table webig.accounts
|
|
CREATE TABLE IF NOT EXISTS `accounts` (
|
|
`uid` INT(10) DEFAULT NULL,
|
|
`web_privs` VARCHAR(255) COLLATE utf8_bin DEFAULT NULL
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
|
|
|
-- Data exporting was unselected.
|
|
/*!40014 SET FOREIGN_KEY_CHECKS=1 */;
|
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
|
|