mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2025-12-28 23:25:46 +01:00
11 lines
238 B
Python
11 lines
238 B
Python
from peewee import *
|
|
from database.models.components.progress_step import ProgressStep
|
|
|
|
|
|
class ProjectDescription(ProgressStep):
|
|
prompt = TextField()
|
|
summary = TextField()
|
|
|
|
class Meta:
|
|
db_table = 'project_description'
|