mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-22 04:37:47 +00:00
9 lines
295 B
SQL
9 lines
295 B
SQL
CREATE TABLE IF NOT EXISTS charainfofriendlist (
|
|
`CharacterId` int(20) NOT NULL,
|
|
`CharacterIdList` blob,
|
|
`InviteDataList` 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;
|