mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
13 lines
408 B
JavaScript
13 lines
408 B
JavaScript
|
|
exports.up = function (knex) {
|
|
return knex.schema.createTable('view_roles', (table) => {
|
|
table.increments();
|
|
table.integer('index');
|
|
table.string('field_key');
|
|
table.string('comparator');
|
|
table.string('value');
|
|
table.integer('view_id').unsigned();
|
|
}).raw('ALTER TABLE `VIEW_ROLES` AUTO_INCREMENT = 1000');
|
|
};
|
|
|
|
exports.down = (knex) => knex.schema.dropTableIfExists('view_roles'); |