12 lines
309 B
JavaScript
Raw Normal View History

2020-04-19 00:40:23 +02:00
exports.up = function (knex) {
return knex.schema.table('TestTableCreatedWithDBBrowser', function (table) {
table.dropColumn('description');
});
};
2020-04-19 00:40:23 +02:00
exports.down = function (knex) {
return knex.schema.table('TestTableCreatedWithDBBrowser', function (table) {
table.text('description');
});
};