Commit 5f2508996b351f54d0e5c16bec71d6d7b2df620a

Authored by Antonio Terceiro
1 parent 1bea1b4f

ActionItem1032: forgot to add the migration

db/migrate/066_add_preferred_domain_name_to_profiles.rb 0 → 100644
... ... @@ -0,0 +1,9 @@
  1 +class AddPreferredDomainNameToProfiles < ActiveRecord::Migration
  2 + def self.up
  3 + add_column :profiles, :preferred_domain_id, :integer
  4 + end
  5 +
  6 + def self.down
  7 + remove_column :profiles, :preferred_domain_id
  8 + end
  9 +end
... ...