Updated db models to store JSON lists instead of text

This commit is contained in:
Zvonimir Sabljic
2023-08-02 10:42:16 +02:00
parent 84346163a3
commit 31f481c702
5 changed files with 11 additions and 4 deletions

View File

@@ -10,3 +10,6 @@ class DevelopmentSteps(BaseModel):
app = ForeignKeyField(App, primary_key=True)
hash_id = CharField(unique=True, null=False)
messages = BinaryJSONField(null=True)
class Meta:
db_table = 'development_steps'