Guest User

Untitled

a guest
Oct 23rd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. delimiter $$
  2.  
  3. CREATE TABLE `adtracker` (
  4. `id` int(11) NOT NULL AUTO_INCREMENT,
  5. `splay` int(11) DEFAULT NULL,
  6. `timestamp` decimal(4,2) DEFAULT NULL,
  7. `affid` varchar(20) DEFAULT NULL,
  8. `src` varchar(20) DEFAULT NULL,
  9. `site` varchar(45) DEFAULT NULL,
  10. `countryCode` varchar(45) DEFAULT NULL,
  11. `timehour` int(11) DEFAULT NULL,
  12. `daytimestamp` datetime DEFAULT NULL,
  13. `adstatus` int(4) DEFAULT NULL,
  14. PRIMARY KEY (`id`),
  15. KEY `SITE` (`site`,`timehour`)
  16. ) ENGINE=MyISAM AUTO_INCREMENT=17637955 DEFAULT CHARSET=latin1$$
Add Comment
Please, Sign In to add comment