Class: LinkUsersToCrmContacts

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/insight/install/templates/migrations/link_users_to_crm_contacts.rb

Class Method Summary collapse

Class Method Details

.downObject



7
8
9
# File 'lib/generators/insight/install/templates/migrations/link_users_to_crm_contacts.rb', line 7

def self.down
  remove_column :users, :crm_id
end

.upObject



3
4
5
# File 'lib/generators/insight/install/templates/migrations/link_users_to_crm_contacts.rb', line 3

def self.up
  add_column :users, :crm_id, :integer
end