feat: (trigger) support file upload in webhook (#25159)

This commit is contained in:
非法操作
2025-09-04 18:33:42 +08:00
committed by GitHub
parent e751c0c535
commit 461829274a
4 changed files with 102 additions and 6 deletions

View File

@ -26,6 +26,7 @@ def upgrade():
sa.Column('tenant_id', models.types.StringUUID(), nullable=False),
sa.Column('webhook_id', sa.String(length=24), nullable=False),
sa.Column('triggered_by', sa.String(length=16), nullable=False),
sa.Column('created_by', models.types.StringUUID(), nullable=False),
sa.Column('created_at', sa.DateTime(), server_default=sa.text('CURRENT_TIMESTAMP'), nullable=False),
sa.Column('updated_at', sa.DateTime(), server_default=sa.text('CURRENT_TIMESTAMP'), nullable=False),
sa.PrimaryKeyConstraint('id', name='workflow_webhook_trigger_pkey'),