Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- SET FOREIGN_KEY_CHECKS=0;
- -- ----------------------------
- -- Table structure for `character_factions`
- -- ----------------------------
- DROP TABLE IF EXISTS `character_factions`;
- CREATE TABLE `character_factions` (
- `charId` INT(16) NOT NULL DEFAULT '0',
- `name` VARCHAR(24) NOT NULL DEFAULT '',
- `factionId` INT(16) NOT NULL DEFAULT '0',
- `factionPoints` DECIMAL(50,0) NOT NULL DEFAULT '0',
- `isNoble` INT(1) NOT NULL DEFAULT '0',
- PRIMARY KEY (`charId`)
- ) DEFAULT CHARSET=latin1;
Advertisement
Add Comment
Please, Sign In to add comment