character_friends.sql 344 B

123456789
  1. -- ----------------------------
  2. -- Table structure for character_friends
  3. -- ----------------------------
  4. CREATE TABLE IF NOT EXISTS `character_friends` (
  5. `charId` INT UNSIGNED NOT NULL default 0,
  6. `friendId` INT UNSIGNED NOT NULL DEFAULT 0,
  7. `friend_name` VARCHAR(35) NOT NULL DEFAULT '',
  8. PRIMARY KEY (`charId`,`friend_name`)
  9. );