Files
l2j_mobius/trunk/dist/sql/game/character_friends.sql
mobius a6a3718849
2015-01-01 20:02:50 +00:00

6 lines
263 B
SQL

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,
PRIMARY KEY (`charId`,`friendId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;