And a tiny fix

This commit is contained in:
Pinga 2023-12-17 10:23:52 +02:00
parent 69511da3d5
commit 11b5f212a5
2 changed files with 2 additions and 2 deletions

View file

@ -339,7 +339,7 @@ CREATE TABLE IF NOT EXISTS `registry`.`application` (
`tldid` int(10) unsigned NOT NULL, `tldid` int(10) unsigned NOT NULL,
`registrant` int(10) unsigned default NULL, `registrant` int(10) unsigned default NULL,
`crdate` datetime(3) NOT NULL, `crdate` datetime(3) NOT NULL,
`exdate` datetime(3) NOT NULL, `exdate` datetime(3) default NULL,
`lastupdate` datetime(3) default NULL, `lastupdate` datetime(3) default NULL,
`clid` int(10) unsigned NOT NULL, `clid` int(10) unsigned NOT NULL,
`crid` int(10) unsigned NOT NULL, `crid` int(10) unsigned NOT NULL,

View file

@ -328,7 +328,7 @@ CREATE TABLE registry.application (
"tldid" int CHECK ("tldid" >= 0) NOT NULL, "tldid" int CHECK ("tldid" >= 0) NOT NULL,
"registrant" int CHECK ("registrant" >= 0) default NULL, "registrant" int CHECK ("registrant" >= 0) default NULL,
"crdate" timestamp(3) without time zone NOT NULL, "crdate" timestamp(3) without time zone NOT NULL,
"exdate" timestamp(3) without time zone NOT NULL, "exdate" timestamp(3) without time zone default NULL,
"lastupdate" timestamp(3) without time zone default NULL, "lastupdate" timestamp(3) without time zone default NULL,
"clid" int CHECK ("clid" >= 0) NOT NULL, "clid" int CHECK ("clid" >= 0) NOT NULL,
"crid" int CHECK ("crid" >= 0) NOT NULL, "crid" int CHECK ("crid" >= 0) NOT NULL,