mirror of
https://github.com/google/nomulus
synced 2026-07-26 01:53:16 +00:00
Add the FeatureFlag entity (#2464)
* Add FeatureFlag entity * Add converter * Add loading cache * Add more tests * Fix NPE in cache * small fixes
This commit is contained in:
@@ -463,6 +463,12 @@
|
||||
primary key (id)
|
||||
);
|
||||
|
||||
create table "FeatureFlag" (
|
||||
feature_name text not null,
|
||||
status hstore not null,
|
||||
primary key (feature_name)
|
||||
);
|
||||
|
||||
create table "GracePeriod" (
|
||||
grace_period_id int8 not null,
|
||||
billing_event_id int8,
|
||||
|
||||
Reference in New Issue
Block a user