mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2025-12-30 08:03:32 +01:00
11 lines
221 B
Python
11 lines
221 B
Python
from peewee import *
|
|
|
|
from database.models.components.progress_step import ProgressStep
|
|
|
|
|
|
class DevelopmentPlanning(ProgressStep):
|
|
architecture = TextField()
|
|
|
|
class Meta:
|
|
db_table = 'development_planning'
|