Add renewal price behavior to AllocationToken (#1580)

This commit is contained in:
Rachel Guan 2022-04-04 18:51:49 -04:00 committed by GitHub
parent 41f9f1ef7d
commit 743dea9ca2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 2607 additions and 2577 deletions

View file

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