10 lines
203 B
Ruby
10 lines
203 B
Ruby
|
class AddExternalUrlToEnviroments < ActiveRecord::Migration
|
||
|
include Gitlab::Database::MigrationHelpers
|
||
|
|
||
|
DOWNTIME = false
|
||
|
|
||
|
def change
|
||
|
add_column(:environments, :external_url, :string)
|
||
|
end
|
||
|
end
|