mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2026-01-04 18:30:20 +01:00
15 lines
373 B
Python
15 lines
373 B
Python
from peewee import *
|
|
|
|
from database.models.components.base_models import BaseModel
|
|
from database.models.development_steps import DevelopmentSteps
|
|
from database.models.app import App
|
|
|
|
class File(BaseModel):
|
|
app = ForeignKeyField(App)
|
|
name = CharField()
|
|
description = TextField()
|
|
|
|
class Meta:
|
|
indexes = (
|
|
(('app', 'name'), True),
|
|
) |