fix(saas): migration idempotency fixes + SCHEMA_VERSION bump to 14
Some checks failed
CI / Lint & TypeCheck (push) Has been cancelled
CI / Unit Tests (push) Has been cancelled
CI / Build Frontend (push) Has been cancelled
CI / Rust Check (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled

- Add IF NOT EXISTS to accounts_template_assignment ALTER COLUMN
- Add IF NOT EXISTS to webhooks CREATE INDEX statements
- Add created_at/updated_at columns + ON CONFLICT DO NOTHING to industry templates
- Bump SCHEMA_VERSION 13→14 to force migration re-run on existing DB
This commit is contained in:
iven
2026-04-05 08:19:10 +08:00
parent af0acff2aa
commit de36bb0724
4 changed files with 20 additions and 14 deletions

View File

@@ -5,7 +5,7 @@ use sqlx::PgPool;
use crate::config::DatabaseConfig;
use crate::error::SaasResult;
const SCHEMA_VERSION: i32 = 13;
const SCHEMA_VERSION: i32 = 14;
/// 初始化数据库
pub async fn init_db(config: &DatabaseConfig) -> SaasResult<PgPool> {