mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-26 14:37:44 +00:00
10 lines
313 B
SQL
10 lines
313 B
SQL
CREATE TABLE IF NOT EXISTS charainfoachievement (
|
|
`CharacterId` BIGINT(20) NOT NULL,
|
|
`UnlockList` blob,
|
|
`ProgressData` blob,
|
|
`HistoryList` blob,
|
|
`IS_DELETE` int(3) DEFAULT 0,
|
|
`IS_NOT_ACTIVE_FLG` int(3) DEFAULT 0,
|
|
`UPDATE_DATE` datetime,
|
|
PRIMARY KEY (`CharacterId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|