character_friends.sql 338 B

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