mirror of
https://github.com/google/nomulus.git
synced 2025-08-11 03:59:37 +02: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:
parent
abc240fc2d
commit
9a2fb6f8b4
5 changed files with 17788 additions and 17758 deletions
|
@ -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
|
||||
);
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue