Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- DROP TABLE IF EXISTS `antifarm`;
- CREATE TABLE `antifarm` (
- `hwid` varbinary(64) NOT NULL,
- `login` varbinary(24) NOT NULL,
- `status` int(11) NOT NULL
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT;
- -- ----------------------------
- -- Table structure for blocked_hwids
- -- ----------------------------
- DROP TABLE IF EXISTS `blocked_hwids`;
- CREATE TABLE `blocked_hwids` (
- `hwid` varbinary(64) NOT NULL DEFAULT '',
- `who` varbinary(64) NOT NULL DEFAULT '',
- `accounts` varbinary(255) NOT NULL DEFAULT '',
- PRIMARY KEY (`hwid`) USING BTREE
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci ROW_FORMAT=COMPACT;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement