mirror of
https://github.com/google/nomulus.git
synced 2025-08-12 20:49:37 +02:00
Add loadOnlyOf method to tm() (#1162)
* Add loadOnlyOf method to tm() In addition there's a bit of a refator of SqlReplayCheckpoint to make it more in line with the other singletons. This method is useful for the singleton classes where we expect at most one entity to exist, e.g. ServerSecret.
This commit is contained in:
parent
dc7f21ca68
commit
a7e8ae5a2c
13 changed files with 4012 additions and 3955 deletions
|
@ -998,7 +998,7 @@ ALTER SEQUENCE public."SignedMarkRevocationList_revision_id_seq" OWNED BY public
|
|||
--
|
||||
|
||||
CREATE TABLE public."SqlReplayCheckpoint" (
|
||||
revision_id bigint NOT NULL,
|
||||
id bigint NOT NULL,
|
||||
last_replay_time timestamp with time zone NOT NULL
|
||||
);
|
||||
|
||||
|
@ -1415,7 +1415,7 @@ ALTER TABLE ONLY public."SignedMarkRevocationList"
|
|||
--
|
||||
|
||||
ALTER TABLE ONLY public."SqlReplayCheckpoint"
|
||||
ADD CONSTRAINT "SqlReplayCheckpoint_pkey" PRIMARY KEY (revision_id);
|
||||
ADD CONSTRAINT "SqlReplayCheckpoint_pkey" PRIMARY KEY (id);
|
||||
|
||||
|
||||
--
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue