docbrown/db/migrate/20210111045049_drop_contact_consent_from_user.rb
2021-01-12 16:18:47 -05:00

5 lines
149 B
Ruby

class DropContactConsentFromUser < ActiveRecord::Migration[6.0]
def change
safety_assured { remove_column :users, :contact_consent }
end
end