Advertisement
ZulRocky

Mood System

Dec 16th, 2013
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.42 KB | None | 0 0
  1. SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
  2.  
  3. --
  4. -- Database: `moodsystem`
  5. --
  6.  
  7.  
  8. --
  9. -- Table structure for table `Mood`
  10. --
  11.  
  12. CREATE TABLE IF NOT EXISTS `Mood` (
  13.   `ID` INT(11) NOT NULL AUTO_INCREMENT,
  14.   `Name` text NOT NULL,
  15.   `Hunger` INT(11) NOT NULL,
  16.   `Bladder` INT(11) NOT NULL,
  17.   `Energy` INT(11) NOT NULL,
  18.   `Defecate` INT(11) NOT NULL,
  19.   PRIMARY KEY (`ID`)
  20. ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=33 ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement