Advertisement
Guest User

Untitled

a guest
Sep 29th, 2015
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 1.02 KB | None | 0 0
  1. CREATE TABLE `domain` (
  2.   `id` int(11) NOT NULL AUTO_INCREMENT,
  3.   `name` varchar(255) NOT NULL DEFAULT '',
  4.   `added` int(11) DEFAULT NULL,
  5.   `updated` int(11) DEFAULT NULL,
  6.   `expires` date DEFAULT NULL,
  7.   `created` date DEFAULT NULL,
  8.   `paid_till` date DEFAULT NULL,
  9.   `free_date` date DEFAULT NULL,
  10.   `state` varchar(255) DEFAULT NULL,
  11.   `registar_id` int(11) DEFAULT NULL,
  12.   `num_subdomains` int(11) DEFAULT NULL,
  13.   `delegated` int(11) DEFAULT '0',
  14.   `zone` varchar(45) DEFAULT NULL,
  15.   `ip_address_id` int(11) DEFAULT NULL,
  16.   `crawled_date` date DEFAULT NULL,
  17.   `liveinternet_traffic_updated_date` int(11) DEFAULT NULL,
  18.   PRIMARY KEY (`id`,`name`),
  19.   UNIQUE KEY `name` (`name`),
  20.   KEY `created` (`created`,`expires`,`delegated`),
  21.   KEY `zone` (`zone`),
  22.   KEY `ip_address_id` (`ip_address_id`),
  23.   KEY `crawled_date` (`crawled_date`),
  24.   KEY `liveinternet_traffic` (`liveinternet_traffic_updated_date`)
  25. ) ENGINE=InnoDB AUTO_INCREMENT=10649177 DEFAULT CHARSET=utf8
  26. /*!50100 PARTITION BY KEY (`name`)
  27. PARTITIONS 10 */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement