Fixed CommandRuns and DevelopmentSteps models + prints

This commit is contained in:
Zvonimir Sabljic
2023-08-04 13:33:56 +02:00
parent 5b76ea2aa2
commit 5ddec70bdc
3 changed files with 6 additions and 7 deletions

View File

@@ -9,7 +9,7 @@ from database.models.app import App
class DevelopmentSteps(BaseModel):
id = AutoField() # This will serve as the primary key
app = ForeignKeyField(App)
hash_id = CharField(unique=True, null=False)
hash_id = CharField(null=False)
messages = BinaryJSONField(null=True)
llm_response = BinaryJSONField(null=False)