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

20160725083350_add_external_url_to_enviroments.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21a8abd310b21fe66cf2367a867e2739ce16f89b (plain)
1
2
3
4
5
6
7
8
9
class AddExternalUrlToEnviroments < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column(:environments, :external_url, :string)
  end
end