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

20160718153603_add_has_external_wiki_to_projects.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55a3e954292d89f734f0a4b2900f248bb176f754 (plain)
1
2
3
4
5
6
7
class AddHasExternalWikiToProjects < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  def change
    add_column :projects, :has_external_wiki, :boolean
  end
end