DROP TABLE IF EXISTS `dnsmgr_config`; CREATE TABLE `dnsmgr_config` ( `key` varchar(32) NOT NULL, `value` TEXT DEFAULT NULL, PRIMARY KEY (`key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; INSERT INTO `dnsmgr_config` VALUES ('version', '1005'); INSERT INTO `dnsmgr_config` VALUES ('notice_mail', '0'); INSERT INTO `dnsmgr_config` VALUES ('notice_wxtpl', '0'); INSERT INTO `dnsmgr_config` VALUES ('mail_smtp', 'smtp.qq.com'); INSERT INTO `dnsmgr_config` VALUES ('mail_port', '465'); DROP TABLE IF EXISTS `dnsmgr_account`; CREATE TABLE `dnsmgr_account` ( `id` int(11) unsigned NOT NULL auto_increment, `type` varchar(20) NOT NULL, `ak` varchar(256) DEFAULT NULL, `sk` varchar(256) DEFAULT NULL, `ext` varchar(256) DEFAULT NULL, `remark` varchar(100) DEFAULT NULL, `addtime` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `dnsmgr_domain`; CREATE TABLE `dnsmgr_domain` ( `id` int(11) unsigned NOT NULL auto_increment, `aid` int(11) unsigned NOT NULL, `name` varchar(128) NOT NULL, `thirdid` varchar(60) DEFAULT NULL, `addtime` datetime DEFAULT NULL, `is_hide` tinyint(1) NOT NULL DEFAULT '0', `is_sso` tinyint(1) NOT NULL DEFAULT '0', `recordcount` int(1) NOT NULL DEFAULT '0', `remark` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`), KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `dnsmgr_user`; CREATE TABLE `dnsmgr_user` ( `id` int(11) unsigned NOT NULL auto_increment, `username` varchar(64) NOT NULL, `password` varchar(80) NOT NULL, `is_api` tinyint(1) NOT NULL DEFAULT '0', `apikey` varchar(32) DEFAULT NULL, `level` int(11) NOT NULL DEFAULT '0', `regtime` datetime DEFAULT NULL, `lasttime` datetime DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `username` (`username`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1000; DROP TABLE IF EXISTS `dnsmgr_permission`; CREATE TABLE `dnsmgr_permission` ( `id` int(11) unsigned NOT NULL auto_increment, `uid` int(11) unsigned NOT NULL, `domain` varchar(128) NOT NULL, `sub` varchar(80) DEFAULT NULL, PRIMARY KEY (`id`), KEY `uid` (`uid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `dnsmgr_log`; CREATE TABLE `dnsmgr_log` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `uid` int(11) unsigned NOT NULL, `action` varchar(40) NOT NULL, `domain` varchar(128) NOT NULL DEFAULT '', `data` varchar(500) DEFAULT NULL, `addtime` datetime NOT NULL, PRIMARY KEY (`id`), KEY `uid` (`uid`), KEY `domain` (`domain`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `dnsmgr_dmtask`; CREATE TABLE `dnsmgr_dmtask` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `did` int(11) unsigned NOT NULL, `rr` varchar(128) NOT NULL, `recordid` varchar(60) NOT NULL, `type` tinyint(1) NOT NULL DEFAULT 0, `main_value` varchar(128) DEFAULT NULL, `backup_value` varchar(128) DEFAULT NULL, `checktype` tinyint(1) NOT NULL DEFAULT 0, `checkurl` varchar(512) DEFAULT NULL, `tcpport` int(5) DEFAULT NULL, `frequency` tinyint(5) NOT NULL, `cycle` tinyint(5) NOT NULL DEFAULT 3, `timeout` tinyint(5) NOT NULL DEFAULT 2, `remark` varchar(100) DEFAULT NULL, `addtime` int(11) NOT NULL DEFAULT 0, `checktime` int(11) NOT NULL DEFAULT 0, `checknexttime` int(11) NOT NULL DEFAULT 0, `switchtime` int(11) NOT NULL DEFAULT 0, `errcount` tinyint(5) NOT NULL DEFAULT 0, `status` tinyint(1) NOT NULL DEFAULT 0, `active` tinyint(1) NOT NULL DEFAULT 0, `recordinfo` varchar(200) DEFAULT NULL, PRIMARY KEY (`id`), KEY `did` (`did`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `dnsmgr_dmlog`; CREATE TABLE `dnsmgr_dmlog` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `taskid` int(11) unsigned NOT NULL, `action` tinyint(4) NOT NULL DEFAULT 0, `errmsg` varchar(100) DEFAULT NULL, `date` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `taskid` (`taskid`), KEY `date` (`date`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `dnsmgr_optimizeip`; CREATE TABLE `dnsmgr_optimizeip` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `did` int(11) unsigned NOT NULL, `rr` varchar(128) NOT NULL, `type` tinyint(1) NOT NULL DEFAULT 0, `ip_type` varchar(10) NOT NULL, `cdn_type` tinyint(5) NOT NULL DEFAULT 1, `recordnum` tinyint(5) NOT NULL DEFAULT 2, `ttl` int(5) NOT NULL DEFAULT 600, `remark` varchar(100) DEFAULT NULL, `addtime` datetime NOT NULL, `updatetime` datetime DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `active` tinyint(1) NOT NULL DEFAULT 0, `errmsg` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`), KEY `did` (`did`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;