mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 05:18:03 +00:00
chore: backup restore plugin removed from built-in plugins
This commit is contained in:
parent
5004d0b51a
commit
672b2eab54
@ -0,0 +1,26 @@
|
|||||||
|
/**
|
||||||
|
* 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 = 'beforeLoad';
|
||||||
|
appVersion = '<1.5.0-beta';
|
||||||
|
|
||||||
|
async up() {
|
||||||
|
await this.pm.repository.update({
|
||||||
|
values: {
|
||||||
|
builtIn: false,
|
||||||
|
},
|
||||||
|
filter: {
|
||||||
|
name: 'backup-restore',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user