<!-- .github/pull_request_template.md --> ## Description <!-- Provide a clear description of the changes in this PR --> ## DCO Affirmation I affirm that all code in every commit of this pull request conforms to the terms of the Topoteretes Developer Certificate of Origin.
12 lines
304 B
Python
12 lines
304 B
Python
from sqlalchemy.orm import DeclarativeBase
|
|
|
|
|
|
class Base(DeclarativeBase):
|
|
"""
|
|
Represents a base class for declarative models using SQLAlchemy.
|
|
|
|
The Base class provides the foundation for creating ORM-mapped classes and manages the
|
|
mapping of classes to database tables.
|
|
"""
|
|
|
|
pass
|