mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2025-12-30 08:03:32 +01:00
13 lines
348 B
Python
13 lines
348 B
Python
from peewee import *
|
|
|
|
from playhouse.postgres_ext import BinaryJSONField
|
|
|
|
from database.models.components.base_models import BaseModel
|
|
from database.models.app import App
|
|
|
|
|
|
class DevelopmentSteps(BaseModel):
|
|
app = ForeignKeyField(App, primary_key=True)
|
|
hash_id = CharField(unique=True, null=False)
|
|
messages = BinaryJSONField(null=True)
|