Advertisement
Guest User

Untitled

a guest
Feb 5th, 2023
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. DROP TABLE IF EXISTS `antifarm`;
  2. CREATE TABLE `antifarm` (
  3. `hwid` varbinary(64) NOT NULL,
  4. `login` varbinary(24) NOT NULL,
  5. `status` int(11) NOT NULL
  6. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT;
  7.  
  8. -- ----------------------------
  9. -- Table structure for blocked_hwids
  10. -- ----------------------------
  11. DROP TABLE IF EXISTS `blocked_hwids`;
  12. CREATE TABLE `blocked_hwids` (
  13. `hwid` varbinary(64) NOT NULL DEFAULT '',
  14. `who` varbinary(64) NOT NULL DEFAULT '',
  15. `accounts` varbinary(255) NOT NULL DEFAULT '',
  16. PRIMARY KEY (`hwid`) USING BTREE
  17. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci ROW_FORMAT=COMPACT;
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement