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