mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2025-12-28 15:17:53 +01:00
11 lines
295 B
Python
11 lines
295 B
Python
from peewee import *
|
|
|
|
from database.models.components.base_models import BaseModel
|
|
from database.models.user import User
|
|
|
|
|
|
class App(BaseModel):
|
|
user = ForeignKeyField(User, backref='apps')
|
|
app_type = CharField(null=True)
|
|
name = CharField(null=True)
|
|
status = CharField(null=True) |