fix(file-manager): update target

This commit is contained in:
chenos 2024-03-06 22:39:39 +08:00
parent d82ed8058c
commit ed224cfa13

View File

@ -0,0 +1,25 @@
import { Model, Repository } from '@nocobase/database';
import { Migration } from '@nocobase/server';
export default class extends Migration {
on = 'afterLoad'; // 'beforeLoad' or 'afterLoad'
appVersion = '<0.20.0-alpha.6';
async up() {
const r = this.db.getRepository<Repository>('fields');
const fields: Model[] = await r.find({
filter: {
interface: 'attachment',
},
});
for (const field of fields) {
const options = field.get('options');
if (options.target !== 'attachments') {
options.target = 'attachments';
field.set('options', options);
field.changed('options', true);
await field.save();
}
}
}
}