nocobase/packages/core/server/src/migrations/20230912193824-package-name-unique.ts
2024-01-26 09:31:28 +08:00

28 lines
782 B
TypeScript

import { DataTypes } from '@nocobase/database';
import { Migration } from '../migration';
export default class extends Migration {
on = 'beforeLoad';
appVersion = '<0.14.0-alpha.2';
async up() {
const tableNameWithSchema = this.pm.collection.getTableNameWithSchema();
const field = this.pm.collection.getField('packageName');
const exists = await field.existsInDb();
if (exists) {
return;
}
try {
await this.db.sequelize.getQueryInterface().addColumn(tableNameWithSchema, field.columnName(), {
type: DataTypes.STRING,
});
await this.db.sequelize.getQueryInterface().addConstraint(tableNameWithSchema, {
type: 'unique',
fields: [field.columnName()],
});
} catch (error) {
//
}
}
}