exports.up = function (knex) {
  return knex.schema.table("analytics_data_ga4", (table) => {
    table.dropColumn("version");
  });
};