smallbusinessinventorymanag.../migrations/versions/83463d3f6b97_fix_migration_identifier.py
Automated Action 4a875f5f83 Fix database migration error with proper Python path configuration
- 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)
2025-05-12 13:00:10 +00:00

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