mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2026-01-02 09:26:09 +01:00
10 lines
205 B
Python
10 lines
205 B
Python
from peewee import *
|
|
|
|
from database.models.components.progress_step import ProgressStep
|
|
|
|
|
|
class Architecture(ProgressStep):
|
|
architecture = TextField()
|
|
class Meta:
|
|
db_table = 'architecture'
|