mirror of
https://github.com/knex/knex.git
synced 2025-07-13 03:50:42 +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');
|
||
|
});
|
||
|
};
|