]> git.openstreetmap.org Git - rails.git/blob - db/migrate/014_add_new_email.rb
Runaway HTML in f28f28f24a61ce4a8956c220f04df5980d4dbd65 made all the interface BOLD
[rails.git] / db / migrate / 014_add_new_email.rb
1 class AddNewEmail < ActiveRecord::Migration
2   def self.up
3     add_column "users", "new_email", :string
4   end
5
6   def self.down
7     remove_column "users", "new_email"
8   end
9 end