Files
junhong_cmp_fiber/migrations/000021_carrier_remove_channel_fields.up.sql
huang d104d297ca
All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 5m16s
feat: 实现运营商模块重构,添加冗余字段优化查询性能
主要变更:
- 新增 Carrier CRUD API(创建、列表、详情、更新、删除、状态更新)
- IotCard/IotCardImportTask 添加 carrier_type/carrier_name 冗余字段
- 移除 Carrier 表的 channel_name/channel_code 字段
- 查询时直接使用冗余字段,避免 JOIN Carrier 表
- 添加数据库迁移脚本(000021-000023)
- 添加单元测试和集成测试
- 同步更新 OpenAPI 文档和 specs
2026-01-27 12:18:19 +08:00

12 lines
395 B
SQL

-- 移除 Carrier 表的 channel_name、channel_code 字段及相关索引
-- 这些字段未被任何地方使用,属于冗余设计
-- 先删除联合唯一索引
DROP INDEX IF EXISTS idx_carrier_type_channel;
-- 删除 channel_name 字段
ALTER TABLE tb_carrier DROP COLUMN IF EXISTS channel_name;
-- 删除 channel_code 字段
ALTER TABLE tb_carrier DROP COLUMN IF EXISTS channel_code;