mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2025-12-29 07:35:44 +01:00
14 lines
291 B
Python
14 lines
291 B
Python
from peewee import *
|
|
|
|
from playhouse.postgres_ext import BinaryJSONField
|
|
|
|
from database.models.components.progress_step import ProgressStep
|
|
|
|
|
|
class ProjectDescription(ProgressStep):
|
|
prompt = TextField()
|
|
summary = TextField()
|
|
|
|
class Meta:
|
|
db_table = 'project_description'
|