I did that in the self.up, did a diff on schema.rb, and used that to
create self.down as follows:
def self.down
change_table(:users) do |t|
t.remove :confirmation_sent_at
t.remove :confirmed_at
t.remove :confirmation_token
end
end
That does revert the table to its previous schema.
Chris