mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 13:46:45 +00:00
8a1345a5b8
* fix: table add useMemo and useCallback * fix: memo bug * fix: sub table bug * fix: form item performance * fix: settings center performance impove * fix: bug * fix: bug * fix: form first value change check performance * fix: revert first form change * fix: css move out component * fix: page change table should not render * fix: pre process merge bug * fix: assotion bug * fix: input and useDeppMemoized performance * fix: bug * fix: bug * fix: improve Action.tsx lazy show content * fix: remove Action performance imporve * fix: assocication read pretty not loading * fix: cssInJs imporve * fix: imporve kanban rerender * fix: remove useless CurrentAppInfoProvider in plugin * fix: divide the schema into several parts * fix: tabs.tsx and Page.tsx divide * fix: form-item imporve * fix: add OverrideSchemaComponentRefresher * fix: page and tabs bug * fix: workflow bug * fix: remove useDeepMemorized() * fix: e2e bug * fix: internal Tag and viewer * fix: collection field read pretty mode skip * fix: others performance * fix: revert collection field read pretty * fix: table column not render when value is null or undefined * fix: table and grid add view check * fix: kanban lazy render * fix: remove table useWhyDidYouUpdate * fix: table index skip loading * fix: card drag rerender loading * fix: e2e skip lazy render * fix: e2e bug * fix: action e2e bug * fix: grid and kanban card * fix: remove override refresher component * fix: unit test bug * fix: change schema component props name * fix: e2e and unit test bug * fix: e2e bug * fix: not lazy render when data length less 10 (T-3784) * chore: fix merge * chore: fix e2e * fix: drag bug (T-3807) * fix: repetitive refresh (T-3729) * fix: pre fix merge confict --------- Co-authored-by: Zeke Zhang <958414905@qq.com> |
||
---|---|---|
.. | ||
src | ||
.npmignore | ||
client.d.ts | ||
client.js | ||
LICENSE | ||
package.json | ||
README.md | ||
README.zh-CN.md | ||
server.d.ts | ||
server.js |
Duplicator
English | 中文
NocoBase 应用的备份与还原插件,可用于应用的复制、迁移、升级等场景。
安装激活
内置插件无需手动安装激活。
使用方法
Duplicator 插件提供了 dump
和 restore
命令,分别用于备份和还原应用数据,可用于单应用的备份和还原,也可以跨应用。如果跨应用还原数据,请保证目标应用 NocoBase 版本与源应用一致,相对应插件也已下载本地。
⚠️ 如果使用了继承(PostgreSQL)、视图、触发器等不兼容的特性,跨数据库还原备份数据可能失败。
备份数据
yarn nocobase dump
选择需要备份的插件表结构及其数据
? Select the plugin collections to be dumped (Press <space> to select, <a> to toggle all, <i> to invert selection, and <enter> to proceed)
== Required ==
- migration (core) (Disabled)
- collections (collection-manager) (Disabled)
- uiSchemas (ui-schema-storage) (Disabled)
- uiRoutes (ui-routes-storage) (Disabled)
- acl (acl) (Disabled)
- workflowConfig (workflow) (Disabled)
- snapshot-field (snapshot-field) (Disabled)
- sequences (sequence-field) (Disabled)
== Optional ==
❯◉ executionLogs (workflow)
◉ users (users)
◉ storageSetting (file-manager)
◉ attachmentRecords (file-manager)
◉ systemSettings (system-settings)
◉ verificationProviders (verification)
◉ verificationData (verification)
◉ oidcProviders (oidc)
◉ samlProviders (saml)
◉ mapConfiguration (map)
(Move up and down to reveal more choices)
选择需要备份的其他数据表的记录
? Select the collection records to be dumped (Press <space> to select, <a> to toggle all, <i> to invert selection, and <enter> to proceed)
❯◉ Test1
❯◉ Test2
❯◉ Test3
数据备份成功之后,备份文件位于 storage/duplicator
目录下:
dumped to /your/apps/a/storage/duplicator/dump-20230210T223910.nbdump
dumped file size: 20.8 kB
还原数据
yarn nocobase restore /your/apps/a/storage/duplicator/dump-20230210T223910.nbdump
导入前请先备份数据
? Danger !!! This action will overwrite your current data, please make sure you have a backup❗️❗️ (y/N)
选择需要还原的插件表结构及其数据
? Select the plugin collections to be restored (Press <space> to select, <a> to toggle all, <i> to invert selection, and <enter> to proceed)
== Required ==
- migration (core) (Disabled)
- collections (collection-manager) (Disabled)
- uiSchemas (ui-schema-storage) (Disabled)
- uiRoutes (ui-routes-storage) (Disabled)
- acl (acl) (Disabled)
- workflowConfig (workflow) (Disabled)
- sequences (sequence-field) (Disabled)
== Optional ==
❯◯ executionLogs (workflow)
◯ users (users)
◯ storageSetting (file-manager)
◯ attachmentRecords (file-manager)
◯ systemSettings (system-settings)
◯ verificationProviders (verification)
◯ verificationData (verification)
◯ auditLogs (audit-logs)
◯ iframe html storage (iframe-block)
选择需要还原的其他数据表的记录
? Select the collection records to be restored (Press <space> to select, <a> to toggle all, <i> to invert selection, and <enter> to proceed)
❯◉ Test1
❯◉ Test2
❯◉ Test3
成功之后,重启应用
# for development
yarn dev
# for production
yarn start