mirror of https://github.com/langgenius/dify.git
merge alembic head
This commit is contained in:
parent
e368825c21
commit
15ff8efb15
|
|
@ -0,0 +1,25 @@
|
|||
"""merge heads
|
||||
|
||||
Revision ID: 5d8b3015e29b
|
||||
Revises: d57accd375ae, 2536f83803a8
|
||||
Create Date: 2025-12-16 16:19:09.076002
|
||||
|
||||
"""
|
||||
from alembic import op
|
||||
import models as models
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '5d8b3015e29b'
|
||||
down_revision = ('d57accd375ae', '2536f83803a8')
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
pass
|
||||
|
||||
|
||||
def downgrade():
|
||||
pass
|
||||
Loading…
Reference in New Issue