mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2026-02-23 15:49:50 +01:00
Updated db models to store JSON lists instead of text
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
from peewee import *
|
||||
|
||||
from database.models.components.progress_step import ProgressStep
|
||||
from playhouse.postgres_ext import BinaryJSONField
|
||||
|
||||
|
||||
class DevelopmentPlanning(ProgressStep):
|
||||
architecture = TextField()
|
||||
development_plan = BinaryJSONField()
|
||||
|
||||
class Meta:
|
||||
db_table = 'development_planning'
|
||||
|
||||
Reference in New Issue
Block a user