Guest User

Setekh - Corvus Faction

a guest
Oct 17th, 2010
650
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.49 KB | None | 0 0
  1.  
  2. SET FOREIGN_KEY_CHECKS=0;
  3. -- ----------------------------
  4. -- Table structure for `character_factions`
  5. -- ----------------------------
  6. DROP TABLE IF EXISTS `character_factions`;
  7. CREATE TABLE `character_factions` (
  8.   `charId` INT(16) NOT NULL DEFAULT '0',
  9.   `name` VARCHAR(24) NOT NULL DEFAULT '',
  10.   `factionId` INT(16) NOT NULL DEFAULT '0',
  11.   `factionPoints` DECIMAL(50,0) NOT NULL DEFAULT '0',
  12.   `isNoble` INT(1) NOT NULL DEFAULT '0',
  13.   PRIMARY KEY  (`charId`)
  14. ) DEFAULT CHARSET=latin1;
Advertisement
Add Comment
Please, Sign In to add comment