chore: update database backups and add V6 migration

- Clean old database backup files
- Add fresh backups (2026-01-16):
  - martial_full_20260116.sql (34 martial tables)
  - blade_full_20260116.sql (38 blade tables)
  - other_tables_full_20260116.sql (16 mt_* + flyway tables)
- Add V6 migration: add project_id to martial_deduction_item

Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
This commit is contained in:
2026-01-16 16:15:53 +08:00
co-authored by factory-droid[bot]
parent 03074c381b
commit 81e2cbc33b
26 changed files with 3387 additions and 88745 deletions
@@ -0,0 +1,8 @@
-- =====================================================
-- Migration: Add project_id to martial_deduction_item
-- Version: V6
-- Description: Add missing project_id column for project association
-- Date: 2026-01-16
-- =====================================================
ALTER TABLE martial_deduction_item ADD COLUMN project_id BIGINT NULL COMMENT '项目ID' AFTER applicable_projects;