mirror of
https://github.com/google/nomulus.git
synced 2025-07-09 04:33:28 +02:00
Add non-SQL removal code for Transaction and SqlReplayCheckpoint (#1700)
This commit is contained in:
parent
7071bb91f2
commit
d5c65bf8d7
19 changed files with 10 additions and 438 deletions
|
@ -682,12 +682,6 @@
|
|||
primary key (id)
|
||||
);
|
||||
|
||||
create table "SqlReplayCheckpoint" (
|
||||
id int8 not null,
|
||||
last_replay_time timestamptz not null,
|
||||
primary key (id)
|
||||
);
|
||||
|
||||
create table "Tld" (
|
||||
tld_name text not null,
|
||||
add_grace_period_length interval not null,
|
||||
|
@ -737,12 +731,6 @@
|
|||
url text not null,
|
||||
primary key (id)
|
||||
);
|
||||
|
||||
create table "Transaction" (
|
||||
id bigserial not null,
|
||||
contents bytea,
|
||||
primary key (id)
|
||||
);
|
||||
create index allocation_token_domain_name_idx on "AllocationToken" (domain_name);
|
||||
create index IDX9g3s7mjv1yn4t06nqid39whss on "AllocationToken" (token_type);
|
||||
create index IDXtmlqd31dpvvd2g1h9i7erw6aj on "AllocationToken" (redemption_domain_repo_id);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue