Add database field for A record, correct other DNS record fields

This commit is contained in:
Marcus Hill 2022-03-13 09:31:28 +00:00
parent 5b274b09e6
commit 438e7ac838
1 changed files with 4 additions and 3 deletions

7
db.sql
View File

@ -431,9 +431,10 @@ CREATE TABLE `domains` (
`domain_id` int(11) NOT NULL AUTO_INCREMENT,
`domain_name` varchar(200) NOT NULL,
`domain_expire` date DEFAULT NULL,
`domain_name_servers` VARCHAR(255) NULL DEFAULT NULL,
`domain_mail_servers` VARCHAR(255) NULL DEFAULT NULL,
`domain_raw_whois` TEXT NULL DEFAULT NULL,
`domain_ip` varchar(255) DEFAULT NULL,
`domain_name_servers` varchar(255) DEFAULT NULL,
`domain_mail_servers` varchar(255) DEFAULT NULL,
`domain_raw_whois` text DEFAULT NULL,
`domain_created_at` datetime NOT NULL,
`domain_updated_at` datetime DEFAULT NULL,
`domain_archived_at` datetime DEFAULT NULL,