Php versions – Laravel migrate failing on "renameColumn" when running
I have about 30+ migration files. When it gets to a migration which contains a column rename: Schema::table('table', function (Blueprint $table) { $table->renameColumn('old_field', 'new_field'); }); It only errors once it gets to this migration (let's say, number 15). It runs…