1
0
mirror of https://github.com/google/nomulus synced 2026-01-07 05:56:49 +00:00

Add the BsaDomainRefresh entity (#2250)

Add the BsaDomainRefresh class which tracks the refresh actions.

The refresh actions checks for changes in the set of registered and
reserved domains, which are called unblockables to BSA.
This commit is contained in:
Weimin Yu
2023-12-13 16:08:37 -05:00
committed by GitHub
parent 8d793b2349
commit c73f7a6bd3
5 changed files with 182 additions and 0 deletions

View File

@@ -93,6 +93,14 @@
primary key (label, tld)
);
create table "BsaDomainRefresh" (
job_id bigserial not null,
creation_time timestamptz not null,
stage text not null,
update_timestamp timestamptz,
primary key (job_id)
);
create table "BsaDownload" (
job_id bigserial not null,
block_list_checksums text not null,