Renamed the repo

This commit is contained in:
Zvonimir Sabljic
2023-08-16 14:57:55 +02:00
parent b3e49b5784
commit 8c58d2803d
91 changed files with 25 additions and 9 deletions

View File

@@ -0,0 +1,18 @@
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):
id = AutoField()
app = ForeignKeyField(App, on_delete='CASCADE')
name = CharField()
path = CharField()
full_path = CharField()
description = TextField(null=True)
class Meta:
indexes = (
(('app', 'name', 'path'), True),
)