mirror of
https://github.com/knex/knex.git
synced 2025-07-30 12:23:03 +00:00
12 lines
305 B
JavaScript
12 lines
305 B
JavaScript
exports.up = function(knex) {
|
|
return knex.schema.table('TestTableCreatedWithDBBrowser', function(table) {
|
|
table.dropColumn('description');
|
|
});
|
|
};
|
|
|
|
exports.down = function(knex) {
|
|
return knex.schema.table('TestTableCreatedWithDBBrowser', function(table) {
|
|
table.text('description');
|
|
});
|
|
};
|