Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160508194200_remove_wall_enabled_from_projects.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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