mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2026-02-23 15:49:50 +01:00
fixes of storing users and apps
This commit is contained in:
@@ -6,6 +6,6 @@ from database.models.user import User
|
||||
|
||||
class App(BaseModel):
|
||||
user = ForeignKeyField(User, backref='apps')
|
||||
app_type = CharField()
|
||||
name = CharField()
|
||||
app_type = CharField(null=True)
|
||||
name = CharField(null=True)
|
||||
status = CharField(default='started')
|
||||
Reference in New Issue
Block a user