character_friends.sql 288 B

12345678
  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_name` VARCHAR(35) NOT NULL DEFAULT '',
  7. PRIMARY KEY (`char_id`,`friend_name`)
  8. );