Skip to content

Commit 54ee485

Browse files
adding LICENSE enum to RUT
1 parent 78021f1 commit 54ee485

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

packages/models-library/src/models_library/resource_tracker.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ class CreditClassification(StrAutoEnum):
5252

5353
class PricingPlanClassification(StrAutoEnum):
5454
TIER = auto()
55+
LICENSE = auto()
5556

5657

5758
class PricingInfo(BaseModel):

packages/postgres-database/src/simcore_postgres_database/models/resource_tracker_pricing_plans.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ class PricingPlanClassification(str, enum.Enum):
1818
"""
1919

2020
TIER = "TIER"
21+
LICENSE = "LICENSE"
2122

2223

2324
resource_tracker_pricing_plans = sa.Table(

0 commit comments

Comments
 (0)