mirror of
https://github.com/google/nomulus.git
synced 2025-08-12 20:49:37 +02:00
Add autoRenewEndTime field to Domain entity (#765)
* Add autoRenewEndTime field to Domain entity This is the first step towards allowing administrators to selectively disable autorenew.
This commit is contained in:
parent
98db79d3d1
commit
d873b9f69a
9 changed files with 103 additions and 20 deletions
|
@ -401,7 +401,8 @@ CREATE TABLE public."Domain" (
|
|||
update_timestamp timestamp with time zone,
|
||||
billing_recurrence_id bigint,
|
||||
autorenew_poll_message_id bigint,
|
||||
deletion_poll_message_id bigint
|
||||
deletion_poll_message_id bigint,
|
||||
autorenew_end_time timestamp with time zone
|
||||
);
|
||||
|
||||
|
||||
|
@ -464,7 +465,8 @@ CREATE TABLE public."DomainHistory" (
|
|||
last_epp_update_time timestamp with time zone,
|
||||
statuses text[],
|
||||
update_timestamp timestamp with time zone,
|
||||
domain_repo_id text NOT NULL
|
||||
domain_repo_id text NOT NULL,
|
||||
autorenew_end_time timestamp with time zone
|
||||
);
|
||||
|
||||
|
||||
|
@ -1386,6 +1388,13 @@ CREATE INDEX idxkjt9yaq92876dstimd93hwckh ON public."Domain" USING btree (curren
|
|||
CREATE INDEX idxknk8gmj7s47q56cwpa6rmpt5l ON public."HostHistory" USING btree (history_type);
|
||||
|
||||
|
||||
--
|
||||
-- Name: idxlrq7v63pc21uoh3auq6eybyhl; Type: INDEX; Schema: public; Owner: -
|
||||
--
|
||||
|
||||
CREATE INDEX idxlrq7v63pc21uoh3auq6eybyhl ON public."Domain" USING btree (autorenew_end_time);
|
||||
|
||||
|
||||
--
|
||||
-- Name: idxn1f711wicdnooa2mqb7g1m55o; Type: INDEX; Schema: public; Owner: -
|
||||
--
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue