contactorama/db/migrate/20110601205228_remove_birthdate_as_date.rb

9 lines
187 B
Ruby

class RemoveBirthdateAsDate < ActiveRecord::Migration
def self.up
remove_column :contacts, :birth_date
end
def self.down
add_column :contacts, :birth_date, :date
end
end