0eb410c1a2
CI/CD Pipeline / Validate Code Quality And Tests (push) Failing after 10h51m44s
CI/CD Pipeline / Frontend Lint (push) Failing after 10h51m44s
CI/CD Pipeline / Build & Push Staging (Watchtower auto-deploy) (push) Failing after 10h50m34s
CI/CD Pipeline / Staging E2E Tests (push) Failing after 10h48m26s
CI/CD Pipeline / Staging API Integration Tests (push) Failing after 10h48m26s
CI/CD Pipeline / Build Production Runtime Images (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
生产数据库alembic_version为034_cms_enhance,但代码中没有对应迁移文件, 导致部署时alembic upgrade head失败。添加占位迁移让alembic 能识别当前版本。实际表结构变更已在生产手动应用。
29 lines
680 B
Python
29 lines
680 B
Python
"""CMS Enhancements (placeholder - manually applied on production)
|
|
|
|
Revision ID: 034_cms_enhance
|
|
Revises: 033
|
|
Create Date: 2026-07-09
|
|
|
|
占位迁移文件:生产数据库已手动升级到此版本,
|
|
此文件用于让 alembic 识别当前版本,避免部署时迁移失败。
|
|
实际的表结构变更(helpcenter, tickets, partners, site_settings 等)
|
|
已在生产环境手动执行。
|
|
"""
|
|
|
|
from alembic import op
|
|
|
|
revision = "034_cms_enhance"
|
|
down_revision = "033"
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
"""占位 - 变更已在生产环境手动应用"""
|
|
pass
|
|
|
|
|
|
def downgrade() -> None:
|
|
"""占位 - 不执行实际回退"""
|
|
pass
|