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:
sarahcaseybot
2024-06-12 16:44:08 +00:00
committed by GitHub
parent 7ce7b23450
commit 34694b4aef
8 changed files with 442 additions and 6 deletions
@@ -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,