/** * Migration to convert company_billing_cycles date columns to pure date type. * This version precomputes conversions in a staging table and adds fallback updates * to ensure no nulls remain before setting NOT NULL constraints. */ exports.up = async function (knex) { return Promise.resolve(); }; //////////////////////////////////////////////////////////////////////// // Sample exports.down migration (adjust as needed) //////////////////////////////////////////////////////////////////////// exports.down = async function (knex) { return Promise.resolve(); };