Merge branch 'feat/r2' into deploy/rag-dev
commit
725fc72c6f
@ -0,0 +1,33 @@
|
||||
"""add_pipeline_info_8
|
||||
|
||||
Revision ID: a1025f709c06
|
||||
Revises: 70a0fc0c013f
|
||||
Create Date: 2025-06-19 15:25:41.263120
|
||||
|
||||
"""
|
||||
from alembic import op
|
||||
import models as models
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = 'a1025f709c06'
|
||||
down_revision = '70a0fc0c013f'
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
with op.batch_alter_table('document_pipeline_execution_logs', schema=None) as batch_op:
|
||||
batch_op.add_column(sa.Column('datasource_node_id', sa.String(length=255), nullable=False))
|
||||
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
with op.batch_alter_table('document_pipeline_execution_logs', schema=None) as batch_op:
|
||||
batch_op.drop_column('datasource_node_id')
|
||||
|
||||
# ### end Alembic commands ###
|
||||
Loading…
Reference in New Issue