1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-27 06:47:45 +00:00
sapphire/sql/migrations/20230305161241_AddAchievement.sql

11 lines
313 B
MySQL
Raw Normal View History

2023-03-05 20:44:42 -03:00
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;