Database Migration / Deployment Questions

Hello! I have the same issue. My db is Postgres, the migration to reproduce:

'use strict'

module.exports = {
  async up(knex) {
    await knex.schema.table('testcontents', table => {
      table.renameColumn('title', 'name');
    });
  },
  async down() {},
};

After yarn develop
migration name is saved inside the strapi_migrations table, but nothing changes in testcontents schema

3 Likes