feat: 实现ID生成器并重构模型ID生成逻辑
refactor: 统一ID生成方式,使用新的idGenerator模块 refactor: 重构模型ID生成逻辑,允许空ID并在创建前自动生成 fix(roomSchema): 使机房ID字段变为可选并更新前端表单验证 style: 格式化代码并优化导入语句 test: 添加操作日志集成测试文件 docs: 添加错误处理模块文档
This commit is contained in:
@@ -109,7 +109,8 @@ const migrations = [
|
||||
},
|
||||
{
|
||||
name: '耗材日志设备关联',
|
||||
description: '为 consumable_logs 表添加 deviceId、deviceName、rackId、rackName、roomId、roomName 字段',
|
||||
description:
|
||||
'为 consumable_logs 表添加 deviceId、deviceName、rackId、rackName、roomId、roomName 字段',
|
||||
migrate: migrateConsumableLogDeviceAssociation,
|
||||
},
|
||||
];
|
||||
@@ -761,9 +762,7 @@ async function migrateDevicePositionIndexes() {
|
||||
const existingIndexes = await sequelize.query(`SHOW INDEX FROM ${tableName}`, {
|
||||
type: sequelize.QueryTypes.SELECT,
|
||||
});
|
||||
const indexExists = existingIndexes.some(
|
||||
existing => existing.Key_name === idx.name
|
||||
);
|
||||
const indexExists = existingIndexes.some(existing => existing.Key_name === idx.name);
|
||||
|
||||
if (indexExists) {
|
||||
console.log(' → 索引已存在,跳过');
|
||||
@@ -780,7 +779,10 @@ async function migrateDevicePositionIndexes() {
|
||||
console.log(' ✓ 索引创建成功');
|
||||
}
|
||||
} catch (error) {
|
||||
if (error.message.includes('already exists') || error.message.includes('Duplicate key name')) {
|
||||
if (
|
||||
error.message.includes('already exists') ||
|
||||
error.message.includes('Duplicate key name')
|
||||
) {
|
||||
console.log(' → 索引已存在,跳过');
|
||||
} else {
|
||||
throw error;
|
||||
|
||||
@@ -33,9 +33,13 @@ async function migrateCableFields() {
|
||||
for (const column of newColumns) {
|
||||
if (!existingColumns.includes(column.name)) {
|
||||
if (dbDialect === 'sqlite') {
|
||||
await sequelize.query(`ALTER TABLE ${tableName} ADD COLUMN ${column.name} ${column.type}`);
|
||||
await sequelize.query(
|
||||
`ALTER TABLE ${tableName} ADD COLUMN ${column.name} ${column.type}`
|
||||
);
|
||||
} else {
|
||||
await sequelize.query(`ALTER TABLE ${tableName} ADD COLUMN ${column.name} ${column.type}`);
|
||||
await sequelize.query(
|
||||
`ALTER TABLE ${tableName} ADD COLUMN ${column.name} ${column.type}`
|
||||
);
|
||||
}
|
||||
console.log(` ✓ 添加字段: ${column.name}`);
|
||||
} else {
|
||||
@@ -62,4 +66,4 @@ if (require.main === module) {
|
||||
});
|
||||
}
|
||||
|
||||
module.exports = { migrateCableFields };
|
||||
module.exports = { migrateCableFields };
|
||||
|
||||
Reference in New Issue
Block a user