Database Installer.
This commit is contained in:
8
trunk/dist/db_installer/sql/game/character_friends.sql
vendored
Normal file
8
trunk/dist/db_installer/sql/game/character_friends.sql
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
DROP TABLE IF EXISTS `character_friends`;
|
||||
CREATE TABLE IF NOT EXISTS `character_friends` (
|
||||
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||
`friendId` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||
`relation` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||
`memo` text,
|
||||
PRIMARY KEY (`charId`,`friendId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
Reference in New Issue
Block a user