Sha256: 1581ad60aeac998aa91b1ee2907a286bd53753613556b3144300f4c4bf8cd46f
Contents?: true
Size: 349 Bytes
Versions: 16
Compression:
Stored size: 349 Bytes
Contents
class ChangeColumnDefaultSocialNetworkingProfilesActiveToFalse < ActiveRecord::Migration def change change_column_default :social_networking_profiles, :active, false SocialNetworking::Profile.where(active: nil).each do |p| p.update!(active: false) end change_column_null :social_networking_profiles, :active, false end end
Version data entries
16 entries across 16 versions & 1 rubygems