mirror of https://github.com/nocodb/nocodb
աɨռɢӄաօռɢ
2 years ago
committed by
GitHub
5 changed files with 50 additions and 3 deletions
@ -0,0 +1,34 @@ |
|||||||
|
import { NcUpgraderCtx } from './NcUpgrader'; |
||||||
|
import { MetaTable } from '../utils/globals'; |
||||||
|
import View from '../models/View'; |
||||||
|
import Hook from '../models/Hook'; |
||||||
|
import Column from '../models/Column'; |
||||||
|
|
||||||
|
// before 0.101.0, an incorrect project_id was inserted when
|
||||||
|
// a filter is created without specifying the column
|
||||||
|
// this upgrader is to retrieve the correct project id from either view, hook, or column
|
||||||
|
// and update the project id
|
||||||
|
export default async function ({ ncMeta }: NcUpgraderCtx) { |
||||||
|
const filters = await ncMeta.metaList2(null, null, MetaTable.FILTER_EXP); |
||||||
|
for (const filter of filters) { |
||||||
|
let model: { project_id?: string; base_id?: string }; |
||||||
|
if (filter.fk_view_id) { |
||||||
|
model = await View.get(filter.fk_view_id, ncMeta); |
||||||
|
} else if (filter.fk_hook_id) { |
||||||
|
model = await Hook.get(filter.fk_hook_id, ncMeta); |
||||||
|
} else if (filter.fk_column_id) { |
||||||
|
model = await Column.get({ colId: filter.fk_column_id }, ncMeta); |
||||||
|
} else { |
||||||
|
continue; |
||||||
|
} |
||||||
|
if (filter.project_id != model.project_id) { |
||||||
|
await ncMeta.metaUpdate( |
||||||
|
null, |
||||||
|
null, |
||||||
|
MetaTable.FILTER_EXP, |
||||||
|
{ base_id: model.base_id, project_id: model.project_id }, |
||||||
|
filter.id |
||||||
|
); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue