In a Rails Migration (MySQL), can you specify what position a new column should be?

If I'm adding a column via MySQL, I can specify where in the table that column will be using the AFTER modifier. But if I do the add_column via a Rails migration, the column will be created at the ...