Browse Source

geodata: add order table in map view column

pull/4723/head
flisowna 2 years ago
parent
commit
228211c2b1
  1. 1
      packages/nocodb/src/lib/migrations/v2/nc_025_map_view_column.ts

1
packages/nocodb/src/lib/migrations/v2/nc_025_map_view_column.ts

@ -21,6 +21,7 @@ const up = async (knex) => {
table.string('help');
table.boolean('show');
table.float('order');
table.timestamps(true, true);
});

Loading…
Cancel
Save