mirror of
https://github.com/google/nomulus.git
synced 2025-08-11 12:09:39 +02:00
Set default value of 1 for new not-null columns (#1097)
Use 1 since it's the constant singleton ID
This commit is contained in:
parent
844b5ab713
commit
23896b64c7
2 changed files with 4 additions and 4 deletions
|
@ -949,7 +949,7 @@ ALTER SEQUENCE public."SafeBrowsingThreat_id_seq" OWNED BY public."Spec11ThreatM
|
|||
|
||||
CREATE TABLE public."ServerSecret" (
|
||||
secret uuid NOT NULL,
|
||||
id bigint NOT NULL
|
||||
id bigint DEFAULT 1 NOT NULL
|
||||
);
|
||||
|
||||
|
||||
|
@ -1057,7 +1057,7 @@ CREATE TABLE public."TmchCrl" (
|
|||
certificate_revocations text NOT NULL,
|
||||
update_timestamp timestamp with time zone NOT NULL,
|
||||
url text NOT NULL,
|
||||
id bigint NOT NULL
|
||||
id bigint DEFAULT 1 NOT NULL
|
||||
);
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue