mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 04:10:32 +00:00
13 lines
266 B
JavaScript
13 lines
266 B
JavaScript
|
|
exports.up = function(knex) {
|
|
return knex.schema.createTable('media', (table) => {
|
|
table.increments();
|
|
table.string('attachment_file');
|
|
table.timestamps();
|
|
});
|
|
};
|
|
|
|
exports.down = function(knex) {
|
|
return knex.schema.dropTableIfExists('media');
|
|
};
|