mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2026-02-23 15:49:50 +01:00
Renamed the repo
This commit is contained in:
10
pilot/database/models/user_tasks.py
Normal file
10
pilot/database/models/user_tasks.py
Normal file
@@ -0,0 +1,10 @@
|
||||
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'
|
||||
Reference in New Issue
Block a user