mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2026-02-23 15:49:50 +01:00
Updated DevelopmentSteps model
This commit is contained in:
@@ -7,9 +7,11 @@ from database.models.app import App
|
||||
|
||||
|
||||
class DevelopmentSteps(BaseModel):
|
||||
app = ForeignKeyField(App, primary_key=True)
|
||||
id = AutoField() # This will serve as the primary key
|
||||
app = ForeignKeyField(App)
|
||||
hash_id = CharField(unique=True, null=False)
|
||||
messages = BinaryJSONField(null=True)
|
||||
llm_response = BinaryJSONField(null=False)
|
||||
|
||||
class Meta:
|
||||
db_table = 'development_steps'
|
||||
Reference in New Issue
Block a user