mirror of https://github.com/nocodb/nocodb
Ramesh Mane
9 months ago
1 changed files with 18 additions and 0 deletions
@ -0,0 +1,18 @@ |
|||||||
|
import type { Knex } from 'knex'; |
||||||
|
import { MetaTable } from '~/utils/globals'; |
||||||
|
|
||||||
|
const up = async (knex: Knex) => { |
||||||
|
await knex.schema.alterTable(MetaTable.FORM_VIEW, (table) => { |
||||||
|
table.text('subheading').alter(); |
||||||
|
table.text('success_msg').alter(); |
||||||
|
}); |
||||||
|
|
||||||
|
await knex.schema.alterTable(MetaTable.FORM_VIEW_COLUMNS, (table) => { |
||||||
|
table.text('label').alter(); |
||||||
|
table.text('description').alter(); |
||||||
|
}); |
||||||
|
}; |
||||||
|
|
||||||
|
const down = async (knex: Knex) => {}; |
||||||
|
|
||||||
|
export { up, down }; |
Loading…
Reference in new issue