debian-mirror-gitlab/db/migrate/20160508194200_remove_wall_enabled_from_projects.rb
2018-12-23 12:14:25 +05:30

7 lines
193 B
Ruby

# rubocop:disable all
class RemoveWallEnabledFromProjects < ActiveRecord::Migration[4.2]
def change
remove_column :projects, :wall_enabled, :boolean, default: true, null: false
end
end