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: e3e4afaf512bc8ba34a5133fee4309e58637e2b1 (plain)
1
2
3
4
5
6
7
class AddHasExternalWikiToProjects < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

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