mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2026-02-23 15:49:50 +01:00
refactor DB
This commit is contained in:
9
euclid/database/models/user_tasks.py
Normal file
9
euclid/database/models/user_tasks.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from peewee import *
|
||||
|
||||
from database.models.components.progress_step import ProgressStep
|
||||
|
||||
|
||||
class UserTasks(ProgressStep):
|
||||
user_tasks = TextField()
|
||||
class Meta:
|
||||
db_table = 'user_tasks'
|
||||
Reference in New Issue
Block a user