Sha256: 512b2a1e07adaefd14924c3a6aac193565ad8752b7bf5b83b04e71d25573ab31
Contents?: true
Size: 280 Bytes
Versions: 7
Compression:
Stored size: 280 Bytes
Contents
class AddSkypeToContactsAndLeads < ActiveRecord::Migration def self.up add_column :contacts, :skype, :string, limit: 128 add_column :leads, :skype, :string, limit: 128 end def self.down remove_column :contacts, :skype remove_column :leads, :skype end end
Version data entries
7 entries across 7 versions & 2 rubygems