ascott

MySQL demo_template.accounts_roles

Jul 6th, 2012
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.27 KB | None | 0 0
  1. CREATE TABLE IF NOT EXISTS `accounts_roles` (  
  2.     `RolesID` int(11) NOT NULL AUTO_INCREMENT,  
  3.     `Name` varchar(255) NOT NULL,  
  4.     `Role` varchar(25) NOT NULL,  
  5.     PRIMARY KEY (`RolesID`),  
  6.     UNIQUE KEY `Role` (`Role`)  
  7. ) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
Add Comment
Please, Sign In to add comment