summaryrefslogtreecommitdiff
path: root/db/migrate/20190524062810_generate_lets_encrypt_private_key.rb
blob: ae93a76575a933d698d85bf61411f12fa57fe2ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class GenerateLetsEncryptPrivateKey < ActiveRecord::Migration[5.1]
  include Gitlab::Database::MigrationHelpers

  # Set this constant to true if this migration requires downtime.
  DOWNTIME = false

  # we now generate this key on the fly, but since this migration was merged to master, we don't remove it
  def up
  end

  def down
  end
end