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