DockerERTFF/.wappler/migrations/MyDB/20250107203140_wrong case d...

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');
})
};