chore: backup restore plugin removed from built-in plugins

This commit is contained in:
chenos 2024-10-13 10:57:10 +08:00
parent 5004d0b51a
commit 672b2eab54

View File

@ -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',
},
});
}
}