mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-05 21:49:25 +08:00
This reverts commit 109873f7e59723b269640d76e98057770092b42a.
This commit is contained in:
parent
109873f7e5
commit
dd608f96ea
@ -1,28 +0,0 @@
|
|||||||
/**
|
|
||||||
* This file is part of the NocoBase (R) project.
|
|
||||||
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
||||||
* Authors: NocoBase Team.
|
|
||||||
*
|
|
||||||
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
||||||
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import { Migration } from '@nocobase/server';
|
|
||||||
export default class extends Migration {
|
|
||||||
on = 'afterLoad';
|
|
||||||
appVersion = '<1.6.0';
|
|
||||||
async up() {
|
|
||||||
const repo1 = this.db.getRepository('customRequestsRoles');
|
|
||||||
const repo2 = this.db.getRepository('uiButtonSchemasRoles');
|
|
||||||
const customRequestsRoles = await repo1.find();
|
|
||||||
for (const customRequestsRole of customRequestsRoles) {
|
|
||||||
await repo2.firstOrCreate({
|
|
||||||
values: {
|
|
||||||
uid: customRequestsRole.key,
|
|
||||||
roleName: customRequestsRole.roleName,
|
|
||||||
},
|
|
||||||
filterKeys: ['uid', 'roleName'],
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user