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