Первоначальная версия VidConf
This commit is contained in:
7
backend/models/base.py
Normal file
7
backend/models/base.py
Normal file
@@ -0,0 +1,7 @@
|
||||
"""Декларативная база для всех ORM моделей."""
|
||||
|
||||
from sqlalchemy.orm import DeclarativeBase
|
||||
|
||||
|
||||
class Base(DeclarativeBase):
|
||||
"""Общая декларативная база; все модели наследуют от этого."""
|
||||
Reference in New Issue
Block a user