
- Added Python path configuration in migrations/env.py to correctly import app modules - Fixed SQLite database path configuration - Fixed migration revision ID format - Added proper error handling for imports Generated with BackendIM... (backend.im)
24 lines
347 B
Python
24 lines
347 B
Python
"""fix migration identifier
|
|
|
|
Revision ID: 83463d3f6b97
|
|
Revises: 00001
|
|
Create Date: 2025-05-12 12:59:34.013735
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '83463d3f6b97'
|
|
down_revision = '00001'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
pass
|
|
|
|
|
|
def downgrade():
|
|
pass |