Browse Source

fix: typo correction

pull/7917/head
Pranav C 4 months ago
parent
commit
76851e7890
  1. 2
      packages/nocodb/src/meta/migrations/v2/nc_042_user_block.ts

2
packages/nocodb/src/meta/migrations/v2/nc_042_user_block.ts

@ -2,7 +2,7 @@ import type { Knex } from 'knex';
import { MetaTable } from '~/utils/globals';
const up = async (knex: Knex) => {
await knex.schema.createTable(MetaTable.USERS, (table) => {
await knex.schema.alterTable(MetaTable.USERS, (table) => {
table.boolean('blocked').defaultTo(false);
table.string('blocked_reason');
});

Loading…
Cancel
Save