mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2025-12-27 14:49:11 +01:00
9 lines
174 B
Python
9 lines
174 B
Python
from peewee import *
|
|
|
|
from database.models.components.progress_step import ProgressStep
|
|
|
|
|
|
class Development(ProgressStep):
|
|
class Meta:
|
|
table_name = 'development'
|