summaryrefslogtreecommitdiff
path: root/db/migrate/20180228172924_add_include_private_contributions_to_users.rb
blob: 7921d3a14b63ba31c0b37f6bd8530209bbd0d752 (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
  end
end