2016-10-17 06:45:31 -04:00
|
|
|
class AddPropertiesToDeployment < ActiveRecord::Migration
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
2016-10-17 09:34:30 -04:00
|
|
|
add_column :deployments, :on_stop, :string
|
2016-10-17 06:45:31 -04:00
|
|
|
end
|
|
|
|
end
|