mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
14 lines
366 B
JavaScript
14 lines
366 B
JavaScript
|
|
exports.up = function (knex) {
|
|
return knex.schema.createTable('view_roles', (table) => {
|
|
table.increments();
|
|
table.integer('index');
|
|
table.integer('field_id').unsigned();
|
|
table.string('comparator');
|
|
table.string('value');
|
|
table.integer('view_id').unsigned();
|
|
});
|
|
};
|
|
|
|
exports.down = (knex) => knex.schema.dropTableIfExists('view_roles');
|