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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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
);