I have a table ("players") on which another table depends (has a foreign key that refers to players table).
I want to change a column name in this first table.
Rails db:migrate tells me:
SQLite3::ConstraintException: FOREIGN KEY constraint failed: DROP TABLE "players"
While I suppose I could just remove the foreign key and try again; nowhere do I find that rails must drop a table to rename a column.