feat: added initial config

This commit is contained in:
2024-10-10 15:51:41 +02:00
parent 86e82a4d94
commit 5e990a615e
26 changed files with 694 additions and 4 deletions

6
app/models/app.py Normal file
View File

@@ -0,0 +1,6 @@
from creyPY.fastapi.models.base import Base
from sqlalchemy import Column, String
class Application(Base):
name = Column(String(512), nullable=False, unique=True)