summaryrefslogtreecommitdiff
path: root/db/migrate/20160508194200_remove_wall_enabled_from_projects.rb
blob: 6792ffc957abd394906742223e7bd612590b1690 (plain)
1
2
3
4
5
6
# rubocop:disable all
class RemoveWallEnabledFromProjects < ActiveRecord::Migration
  def change
    remove_column :projects, :wall_enabled, :boolean, default: true, null: false
  end
end