mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2025-12-28 15:17:53 +01:00
11 lines
255 B
Python
11 lines
255 B
Python
from peewee import *
|
|
|
|
from database.models.components.progress_step import ProgressStep
|
|
from playhouse.postgres_ext import BinaryJSONField
|
|
|
|
|
|
class UserTasks(ProgressStep):
|
|
user_tasks = BinaryJSONField()
|
|
class Meta:
|
|
db_table = 'user_tasks'
|