mirror of https://github.com/itflow-org/itflow
Add database field for A record, correct other DNS record fields
This commit is contained in:
parent
5b274b09e6
commit
438e7ac838
7
db.sql
7
db.sql
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue