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

20160227120047_add_event_to_services.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a3b94734ec2f3ea2b4d145fdf65b35b39a4afe58 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddEventToServices < ActiveRecord::Migration[4.2]
  def change
    add_column :services, :wiki_page_events, :boolean, default: true
  end
end