Guest User

Untitled

a guest
Jul 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. CREATE TABLE IF NOT EXISTS `groups` (
  2. `id` bigint(20) NOT NULL,
  3. `chatusername` varchar(32) DEFAULT NULL,
  4. PRIMARY KEY (`id`)
  5. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  6.  
  7. CREATE TABLE IF NOT EXISTS `Group id here` (
  8. `id` int(40) NOT NULL,
  9. `username` varchar(32) DEFAULT NULL,
  10. `role` tinyint(4) NOT NULL DEFAULT '0',
  11. `messageCounter` int(11) unsigned NOT NULL DEFAULT '0',
  12. `free` tinyint(1) DEFAULT NULL,
  13. PRIMARY KEY (`id`)
  14. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Add Comment
Please, Sign In to add comment