gitlab-org--gitlab-foss/db/migrate/20160508194200_remove_wall_...

7 lines
188 B
Ruby

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