mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
15 lines
313 B
JavaScript
15 lines
313 B
JavaScript
|
|
exports.up = function(knex) {
|
|
return knex.schema.createTable('options', (table) => {
|
|
table.increments();
|
|
table.string('key');
|
|
table.string('value');
|
|
table.string('group');
|
|
table.string('type');
|
|
});
|
|
};
|
|
|
|
exports.down = function(knex) {
|
|
return knex.schema.dropTableIfExists('options');
|
|
};
|