12 lines
273 B
JavaScript
12 lines
273 B
JavaScript
|
module.exports = {
|
||
|
async up(knex) {
|
||
|
const hasColumn = await knex.schema.hasColumn('toys', 'image');
|
||
|
|
||
|
if (hasColumn) {
|
||
|
await knex.schema.table('toys', (table) => {
|
||
|
table.dropColumn('image');
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
};
|