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

@@ -7,7 +7,7 @@ from database.models.app import App
class CommandRuns(BaseModel):
id = AutoField()
app = ForeignKeyField(App)
hash_id = CharField(unique=True, null=False)
hash_id = CharField(null=False)
command = TextField(null=True)
cli_response = TextField(null=True)