summaryrefslogtreecommitdiff
path: root/db/migrate/20180228172924_add_include_private_contributions_to_users.rb
blob: 58e50b2ee7482a6819b3d1268fc292bcee81a27c (plain)
1
2
3
4
5
6
7
class AddIncludePrivateContributionsToUsers < ActiveRecord::Migration[4.2]
  DOWNTIME = false

  def change
    add_column :users, :include_private_contributions, :boolean # rubocop:disable Migration/AddColumnsToWideTables
  end
end