mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-26 14:37:44 +00:00
new layout for charaquest table
This commit is contained in:
parent
73286e24ca
commit
419df1ea88
1 changed files with 20 additions and 0 deletions
20
sql/charaquestnew.sql
Normal file
20
sql/charaquestnew.sql
Normal file
|
@ -0,0 +1,20 @@
|
|||
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',
|
||||
`UPDATE_DATE` date
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
Loading…
Add table
Reference in a new issue