docbrown/db/migrate/20200828045600_remove_group_from_profile_fields.rb

5 lines
150 B
Ruby

class RemoveGroupFromProfileFields < ActiveRecord::Migration[6.0]
def change
safety_assured { remove_column :profile_fields, :group }
end
end