Guest User

Untitled

a guest
Jul 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. SET NAMES utf8;
  2. SET FOREIGN_KEY_CHECKS = 0;
  3.  
  4. DROP TABLE IF EXISTS `hands`;
  5.  
  6. CREATE TABLE `hands` (
  7. `handid` int(6) unsigned NOT NULL auto_increment,
  8. `userid` tinyint(2) unsigned NOT NULL,
  9. `hand` varchar(30) character set utf8 collate utf8_unicode_ci NOT NULL,
  10. PRIMARY KEY (`handid`)
  11. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  12.  
  13. SET FOREIGN_KEY_CHECKS = 1;
Add Comment
Please, Sign In to add comment