mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
12 lines
236 B
JavaScript
12 lines
236 B
JavaScript
|
|
exports.up = function (knex) {
|
|
return knex.schema.createTable('permissions', (table) => {
|
|
table.increments();
|
|
table.string('name');
|
|
});
|
|
};
|
|
|
|
exports.down = function (knex) {
|
|
return knex.schema.dropTable('permissions');
|
|
};
|