mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2025-12-29 15:45:44 +01:00
11 lines
261 B
Python
11 lines
261 B
Python
from peewee import *
|
|
|
|
from database.models.components.progress_step import ProgressStep
|
|
from playhouse.postgres_ext import BinaryJSONField
|
|
|
|
|
|
class UserStories(ProgressStep):
|
|
user_stories = BinaryJSONField()
|
|
class Meta:
|
|
db_table = 'user_stories'
|