21 lines
446 B
Python
21 lines
446 B
Python
"""SQLAlchemy persistence models.
|
|
|
|
Importing this package registers every model on ``Base.metadata``, which the
|
|
Alembic environment relies on.
|
|
"""
|
|
|
|
from photo_pipeline.models.assets import Asset, AssetPath
|
|
from photo_pipeline.models.duplicates import (
|
|
DuplicateCluster,
|
|
DuplicateMember,
|
|
DuplicateNegativeLink,
|
|
)
|
|
|
|
__all__ = [
|
|
"Asset",
|
|
"AssetPath",
|
|
"DuplicateCluster",
|
|
"DuplicateMember",
|
|
"DuplicateNegativeLink",
|
|
]
|