mirror of https://github.com/nocodb/nocodb
Pranav C
3 years ago
12 changed files with 96 additions and 34 deletions
@ -0,0 +1,48 @@
|
||||
import { NcBuilderUpgraderCtx } from '../BaseApiBuilder'; |
||||
|
||||
export default async function(ctx: NcBuilderUpgraderCtx) { |
||||
const models = await ctx.xcMeta.metaList( |
||||
ctx.projectId, |
||||
ctx.dbAlias, |
||||
'nc_models', |
||||
{ |
||||
xcCondition: { |
||||
_or: [{ type: { eq: 'table' } }, { type: { eq: 'view' } }] |
||||
} |
||||
} |
||||
); |
||||
let order = 0; |
||||
for (const model of models) { |
||||
await ctx.xcMeta.metaUpdate( |
||||
ctx.projectId, |
||||
ctx.dbAlias, |
||||
'nc_models', |
||||
{ |
||||
order: ++order, |
||||
view_order: 1 |
||||
}, |
||||
model.id |
||||
); |
||||
|
||||
const views = await ctx.xcMeta.metaList( |
||||
ctx.projectId, |
||||
ctx.dbAlias, |
||||
'nc_models', |
||||
{ |
||||
condition: { parent_model_title: model.title } |
||||
} |
||||
); |
||||
let view_order = 1; |
||||
for (const view of views) { |
||||
await ctx.xcMeta.metaUpdate( |
||||
ctx.projectId, |
||||
ctx.dbAlias, |
||||
'nc_models', |
||||
{ |
||||
view_order: ++view_order |
||||
}, |
||||
view.id |
||||
); |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue