feat: add initial migration script for revision 175e7600896d
parent
5fdda0f20f
commit
fc1a45c41e
@ -0,0 +1,25 @@
|
||||
"""empty message
|
||||
|
||||
Revision ID: 175e7600896d
|
||||
Revises: 08ec4f75af5e, ad332d76d058
|
||||
Create Date: 2025-05-02 08:33:08.990003
|
||||
|
||||
"""
|
||||
from alembic import op
|
||||
import models as models
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '175e7600896d'
|
||||
down_revision = ('08ec4f75af5e', 'ad332d76d058')
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
pass
|
||||
|
||||
|
||||
def downgrade():
|
||||
pass
|
||||
Loading…
Reference in New Issue