Назад


CREATE TABLE `queue_rules` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `accid` int(11) NOT NULL,
  `adnetworkid` int(11) NOT NULL,
  `count` int(11) NOT NULL,
  `isactive` int(11) NOT NULL,
  `dt_changed` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `showtime` int(11) NOT NULL DEFAULT '30',
  `crosstype` varchar(32) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;