mailr/db/migrate/20110830074142_add_domain_to_users.rb

10 lines
170 B
Ruby
Raw Normal View History

2011-09-03 13:07:40 +02:00
class AddDomainToUsers < ActiveRecord::Migration
def self.up
add_column :users, :domain, :string
end
def self.down
remove_column :users, :domain
end
end