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: fe7c54ca4eb915e92db1caa056d7eb1cc78920ef (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddEventToServices < ActiveRecord::Migration
  def change
    add_column :services, :wiki_page_events, :boolean, default: true
  end
end