summaryrefslogtreecommitdiff
path: root/db/migrate/20160718153603_add_has_external_wiki_to_projects.rb
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