Guest User

Untitled

a guest
Oct 21st, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. CREATE TABLE `pcdata_factions` (
  2. `character_id` int(10) unsigned NOT NULL,
  3. `pc_faction` tinyint(3) unsigned NOT NULL,
  4. `faction_pts` tinyint(3) DEFAULT '0',
  5. `wealth` tinyint(3) DEFAULT '0',
  6. `faction1` tinyint(3) unsigned NOT NULL DEFAULT '50',
  7. `faction2` tinyint(3) unsigned NOT NULL DEFAULT '50',
  8. `faction3` tinyint(3) unsigned NOT NULL DEFAULT '50',
  9. `faction4` tinyint(3) unsigned NOT NULL DEFAULT '50',
  10. `faction5` tinyint(3) unsigned NOT NULL DEFAULT '50',
  11. `faction6` tinyint(3) unsigned NOT NULL DEFAULT '50',
  12. `faction7` tinyint(3) unsigned NOT NULL DEFAULT '50',
  13. `faction8` tinyint(3) unsigned NOT NULL DEFAULT '50',
  14. `faction9` tinyint(3) unsigned NOT NULL DEFAULT '50',
  15. PRIMARY KEY (`character_id`)
  16. ) ENGINE=MyISAM DEFAULT CHARSET=latin1
Add Comment
Please, Sign In to add comment