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

20180102220145_add_pages_https_only_to_projects.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 75488f57fa9ff5701b1bfbf037952929eea8a3d4 (plain)
1
2
3
4
5
6
7
8
9
class AddPagesHttpsOnlyToProjects < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

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