mirror of
https://github.com/getnamingo/registry.git
synced 2025-05-14 16:46:59 +02:00
Database update in preparation of launch phase extension
This commit is contained in:
parent
6df25ee4f7
commit
da4a847826
2 changed files with 12 additions and 0 deletions
|
@ -305,6 +305,12 @@ CREATE TABLE IF NOT EXISTS `registry`.`domain` (
|
|||
`agp_grant` datetime(3) default NULL,
|
||||
`agp_reason` text default NULL,
|
||||
`agp_status` varchar(30) default NULL,
|
||||
`tm_notice_accepted` datetime(3) default NULL,
|
||||
`tm_notice_expires` datetime(3) default NULL,
|
||||
`tm_notice_id` varchar(150) default NULL,
|
||||
`tm_notice_validator` varchar(30) default NULL,
|
||||
`tm_smd_id` text default NULL,
|
||||
`tm_phase` TEXT NOT NULL DEFAULT 'NONE',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `name` (`name`),
|
||||
CONSTRAINT `domain_ibfk_1` FOREIGN KEY (`clid`) REFERENCES `registrar` (`id`) ON DELETE RESTRICT,
|
||||
|
|
|
@ -304,6 +304,12 @@ CREATE TABLE registry.domain (
|
|||
"agp_grant" TIMESTAMP(3) DEFAULT NULL,
|
||||
"agp_reason" TEXT DEFAULT NULL,
|
||||
"agp_status" VARCHAR(30) DEFAULT NULL,
|
||||
"tm_notice_accepted" TIMESTAMP(3) DEFAULT NULL,
|
||||
"tm_notice_expires" TIMESTAMP(3) DEFAULT NULL,
|
||||
"tm_notice_id" VARCHAR(150) DEFAULT NULL,
|
||||
"tm_notice_validator" VARCHAR(30) DEFAULT NULL,
|
||||
"tm_smd_id" TEXT DEFAULT NULL,
|
||||
"tm_phase" text DEFAULT 'NONE'::text NOT NULL,
|
||||
primary key ("id"),
|
||||
unique ("name")
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue