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: 7bd646cd5fd1ec4a6894625e4e231765c04a923c (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 # rubocop:disable Migration/AddColumnsToWideTables
  end
end