clan_introductions.sql 218 B

123456
  1. CREATE TABLE IF NOT EXISTS `clan_introductions` (
  2. `serverId` int(8) NOT NULL,
  3. `clanId` int(8) NOT NULL,
  4. `introduction` text NOT NULL,
  5. PRIMARY KEY (`serverId`,`clanId`)
  6. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;