1
0
mirror of https://github.com/google/nomulus synced 2026-02-11 15:21:28 +00:00

Add SQL column for AllocationToken registration behavior (#1697)

First part of b/237683906

We'll add the Java behavior in a later PR; it'll be an enum with the
values DEFAULT, BYPASS_TLD_STATE, and ANCHOR_TENANT
This commit is contained in:
gbrodman
2022-07-01 18:26:18 -04:00
committed by GitHub
parent abc240fc2d
commit 9a2fb6f8b4
5 changed files with 17788 additions and 17758 deletions

View File

@@ -52,7 +52,8 @@ CREATE TABLE public."AllocationToken" (
token_status_transitions public.hstore,
token_type text,
redemption_domain_history_id bigint,
renewal_price_behavior text DEFAULT 'DEFAULT'::text NOT NULL
renewal_price_behavior text DEFAULT 'DEFAULT'::text NOT NULL,
registration_behavior text DEFAULT 'DEFAULT'::text NOT NULL
);