mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-22 07:40:32 +00:00
fix: remove the import table from tenants dbs
This commit is contained in:
@@ -1,16 +0,0 @@
|
|||||||
exports.up = function (knex) {
|
|
||||||
return knex.schema.createTable('imports', (table) => {
|
|
||||||
table.increments();
|
|
||||||
table.string('filename');
|
|
||||||
table.string('import_id');
|
|
||||||
table.string('resource');
|
|
||||||
table.json('columns');
|
|
||||||
table.json('mapping');
|
|
||||||
table.json('params');
|
|
||||||
table.timestamps();
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
exports.down = function (knex) {
|
|
||||||
return knex.schema.dropTableIfExists('imports');
|
|
||||||
};
|
|
||||||
Reference in New Issue
Block a user