Guest User

Untitled

a guest
May 6th, 2013
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 1.16 KB | None | 0 0
  1. CREATE TABLE `adsDelivered` (
  2.   `id` bigint(20) NOT NULL AUTO_INCREMENT,
  3.   `uid` varchar(40) NOT NULL,
  4.   `_adsDelivered` bigint(20) NOT NULL DEFAULT '0',
  5.   `_campaign` bigint(20) NOT NULL DEFAULT '0',
  6.   `_ad` bigint(20) NOT NULL DEFAULT '0',
  7.   `session` varchar(44) NOT NULL,
  8.   `referer` text NOT NULL,
  9.   `refererDomain` varchar(256) NOT NULL,
  10.   `pageTime` int(11) NOT NULL DEFAULT '0',
  11.   `pageVisibleTime` int(11) NOT NULL DEFAULT '0',
  12.   `browser` varchar(256) NOT NULL,
  13.   `ip` varchar(15) NOT NULL,
  14.   `clicks` int(11) NOT NULL DEFAULT '0',
  15.   `clickTimeLast` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  16.   `tag` varchar(256) NOT NULL,
  17.   `countryShort` varchar(2) NOT NULL,
  18.   `timeCreated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  19.   `timeUpdated` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  20.   PRIMARY KEY (`id`),
  21.   UNIQUE KEY `uid` (`uid`),
  22.   KEY `_campaign` (`_campaign`),
  23.   KEY `_ad` (`_ad`),
  24.   KEY `_adsDelivered` (`_adsDelivered`),
  25.   KEY `session` (`session`),
  26.   KEY `tag` (`tag`),
  27.   KEY `ip` (`ip`),
  28.   KEY `countryShort` (`countryShort`),
  29.   KEY `refererDomain` (`refererDomain`)
  30. ) ENGINE=TokuDB AUTO_INCREMENT=7420143 DEFAULT CHARSET=utf8;
Advertisement
Add Comment
Please, Sign In to add comment