Add non-SQL removal code for Transaction and SqlReplayCheckpoint (#1700)

This commit is contained in:
gbrodman 2022-07-07 14:36:01 -04:00 committed by GitHub
parent 7071bb91f2
commit d5c65bf8d7
19 changed files with 10 additions and 438 deletions

View file

@ -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);