fix: remove the import table from tenants dbs

This commit is contained in:
Ahmed Bouhuolia
2024-04-09 00:13:32 +02:00
parent 2310b09778
commit ee56653f4b

View File

@@ -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');
};