Advertisement
Guest User

Datenbank

a guest
Apr 17th, 2012
1,018
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. CREATE TABLE IF NOT EXISTS `accounts` (
  2. `id` int(11) NOT NULL AUTO_INCREMENT,
  3. `Name` varchar(24) NOT NULL,
  4. `Passwort` varchar(128) NOT NULL,
  5. `Level` int(11) NOT NULL DEFAULT '1',
  6. `Geld` int(11) NOT NULL DEFAULT '0',
  7. `Kills` int(11) NOT NULL DEFAULT '0',
  8. `Tode` int(11) NOT NULL DEFAULT '0',
  9. `Health` float NOT NULL DEFAULT '100',
  10. `Rang` int(11) NOT NULL,
  11. `Member` int(11) NOT NULL,
  12. `Leader` int(11) NOT NULL,
  13. PRIMARY KEY (`id`)
  14. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement