1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-24 21:57:44 +00:00
sapphire/sql/charaquestnew.sql

20 lines
746 B
MySQL
Raw Normal View History

2017-10-24 00:00:22 +02:00
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
DROP TABLE IF EXISTS `charaquestnew`;
CREATE TABLE charaquestnew (
`CharacterId` int(20) DEFAULT '0',
`slotId` int(20) DEFAULT '0',
`QuestId` int(5) DEFAULT '0',
`Sequence` int(3) DEFAULT '0',
`Flags` int(3) DEFAULT '0',
`Variables_0` int(3) DEFAULT '0',
`Variables_1` int(3) DEFAULT '0',
`Variables_2` int(3) DEFAULT '0',
`Variables_3` int(3) DEFAULT '0',
`Variables_4` int(3) DEFAULT '0',
`Variables_5` int(3) DEFAULT '0',
`Variables_6` int(3) DEFAULT '0',
`IS_DELETE` int(3) DEFAULT '0',
`IS_NOT_ACTIVE_FLG` int(3) DEFAULT '0',
2017-11-22 22:29:40 +11:00
`UPDATE_DATE` DATETIME NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
2017-10-24 00:00:22 +02:00
) ENGINE=MyISAM DEFAULT CHARSET=utf8;