16 lines
327 B
JavaScript
16 lines
327 B
JavaScript
|
|
exports.up = function(knex) {
|
|
return knex.schema
|
|
.table('da', async function (table) {
|
|
table.renameColumn('DSPShortCode', 'dspShortCode');
|
|
})
|
|
|
|
};
|
|
|
|
exports.down = function(knex) {
|
|
return knex.schema
|
|
.table('da', async function (table) {
|
|
table.renameColumn('dspShortCode', 'DSPShortCode');
|
|
})
|
|
};
|