Sha256: f35bb4a76f24f40ac42995a2d6a3633e6860378f8b4904c22ae1285c32b4a9b8
Contents?: true
Size: 287 Bytes
Versions: 16
Compression:
Stored size: 287 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
16 entries across 16 versions & 1 rubygems