Drop a Column in MySQL Table Feb 4, 2013 • Mary HeintzCategories: Computing Ruby on Rails For some reason, my migration file wouldn’t drop a column when I tried to go back to an earlier version. I fixed this by just going into mysql and dropping the table manually. mysql> ALTER TABLE students DROP grade;