fix(collection-manager): version.satisfies <= 0.8.0-alpha.14

This commit is contained in:
chenos 2022-12-21 10:27:18 +08:00
parent 57ca33d231
commit a7960422c5

View File

@ -2,7 +2,7 @@ import { Migration } from '@nocobase/server';
export default class extends Migration {
async up() {
const result = await this.app.version.satisfies('<=0.8.0-alpha.13');
const result = await this.app.version.satisfies('<=0.8.0-alpha.14');
if (!result) {
return;
}