mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
11 lines
295 B
JavaScript
11 lines
295 B
JavaScript
|
|
exports.up = function (knex) {
|
|
return knex.schema.createTable('role_has_accounts', (table) => {
|
|
table.increments();
|
|
table.integer('role_id').unsigned();
|
|
table.integer('account_id').unsigned();
|
|
});
|
|
};
|
|
|
|
exports.down = (knex) => knex.schema.dropTableIfExists('role_has_accounts');
|