feat VORKOUT-3: added sql tables, db connection, schemas #2

Merged
ivan.dev merged 3 commits from VORKOUT-3 into master 2025-04-02 11:55:33 +05:00
2 changed files with 4 additions and 6 deletions
Showing only changes of commit c9c5837b38 - Show all commits

View File

@ -1,6 +1,7 @@
import uuid
from os import environ
from functools import cached_property
from pydantic import BaseModel
from pydantic_settings import BaseSettings
@ -43,7 +44,7 @@ class DefaultSettings(BaseSettings):
REDIS_DB: int = int(environ.get("REDIS_DB", "0"))
REDIS_PASSWORD: str = environ.get("REDIS_PASSWORD", "hackme")
@property
@cached_property
def database_settings(self) -> dict:
"""Get all settings for connection with database."""
return {
@ -54,7 +55,7 @@ class DefaultSettings(BaseSettings):
"port": self.MYSQL_PORT,
}
ivan.dev marked this conversation as resolved
Review

Может рассмотреть cached_property?

Может рассмотреть [`cached_property`](https://docs.python.org/3/library/functools.html#functools.cached_property)?
@property
@cached_property
def database_uri(self) -> str:
"""Get uri for connection with database."""
uri = "mysql+aiomysql://{user}:{password}@{host}:{port}/{database}".format(

View File

@ -19,14 +19,11 @@ class EventStatus(str, Enum):
list_events_table = Table(
'list_events', metadata,
Column('id', UnsignedInt, primary_key=True, autoincrement=True),
Column('name', String(40, collation='latin1_bin'), nullable=False),
Column('name', String(40, collation='latin1_bin'), nullable=False,unique=True),
Column('title', String(64), nullable=False),
Column('creator_id', UnsignedInt, ForeignKey('account.id'), nullable=False),
Column('created_at', DateTime(timezone=True), server_default=func.now()),
Column('schema', JSON, default={}),
Column('state', SQLAEnum(EventState), nullable=False),
Column('status', SQLAEnum(EventStatus), nullable=False),
Index('UNIQUE_name', 'name', unique=True)
)