mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-20 11:47:48 +00:00
Quest schema in db changed
This commit is contained in:
parent
f574f5b103
commit
b11007b263
1 changed files with 29 additions and 16 deletions
|
@ -1,22 +1,35 @@
|
|||
/*
|
||||
MySQL Data Transfer
|
||||
Source Host: localhost
|
||||
Source Database: ffxiv_server
|
||||
Target Host: localhost
|
||||
Target Database: ffxiv_server
|
||||
Date: 4/2/2017 2:27:54 PM
|
||||
*/
|
||||
-- --------------------------------------------------------
|
||||
-- Host: 127.0.0.1
|
||||
-- Server version: 5.6.17 - MySQL Community Server (GPL)
|
||||
-- Server OS: Win64
|
||||
-- HeidiSQL Version: 10.1.0.5464
|
||||
-- --------------------------------------------------------
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
-- ----------------------------
|
||||
-- Table structure for characters_quest_scenario
|
||||
-- ----------------------------
|
||||
CREATE TABLE `characters_quest_scenario` (
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET NAMES utf8 */;
|
||||
/*!50503 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 ffxiv_server
|
||||
CREATE DATABASE IF NOT EXISTS `ffxiv_server` /*!40100 DEFAULT CHARACTER SET latin1 */;
|
||||
USE `ffxiv_server`;
|
||||
|
||||
-- Dumping structure for table ffxiv_server.characters_quest_scenario
|
||||
CREATE TABLE IF NOT EXISTS `characters_quest_scenario` (
|
||||
`characterId` int(10) unsigned NOT NULL,
|
||||
`slot` smallint(5) unsigned NOT NULL,
|
||||
`questId` int(10) unsigned NOT NULL,
|
||||
`currentPhase` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`questData` longtext,
|
||||
`questFlags` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`sequence` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`flags` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`counter1` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`counter2` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`counter3` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`characterId`,`slot`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
|
||||
-- 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 */;
|
||||
|
|
Loading…
Add table
Reference in a new issue