debian-mirror-gitlab/db/migrate/20160725083350_add_external_url_to_enviroments.rb

10 lines
208 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
class AddExternalUrlToEnviroments < ActiveRecord::Migration[4.2]
2016-09-13 17:45:13 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
add_column(:environments, :external_url, :string)
end
end