summaryrefslogtreecommitdiff
path: root/db/migrate/20160725083350_add_external_url_to_enviroments.rb
blob: e060c6a849954e1c228042d416246c37d5973cdd (plain)
1
2
3
4
5
6
7
8
9
class AddExternalUrlToEnviroments < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

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