Sha256: 541656e89f9c19e3faf8211830d3579a4f11cad8d81807609a3dac7ad981cf39
Contents?: true
Size: 465 Bytes
Versions: 9
Compression:
Stored size: 465 Bytes
Contents
# This migration comes from curate_engine (originally 20131029142554) class AddUserForceUpdateProfile < ActiveRecord::Migration def change # Apologies for the negative boolean; However with a default column value of # true, ActiveRecord was setting the default field value to false. # So to appease the ORM, you get the lovely negative boolean! add_column User.table_name, :user_does_not_require_profile_update, :boolean, default: false end end
Version data entries
9 entries across 9 versions & 1 rubygems