mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2026-01-07 03:31:20 +01:00
10 lines
204 B
Python
10 lines
204 B
Python
from peewee import *
|
|
|
|
from database.models.components.progress_step import ProgressStep
|
|
|
|
|
|
class UserStories(ProgressStep):
|
|
user_stories = TextField()
|
|
class Meta:
|
|
db_table = 'user_stories'
|