fix: config, list events table

This commit is contained in:
TheNoxium 2025-04-01 14:20:40 +05:00
parent d7bef1ad26
commit c9c5837b38
2 changed files with 4 additions and 6 deletions

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,
}
@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)
)