gitlab-org--gitlab-foss/db/migrate/20161017095000_add_properties_to_deployment.rb
2016-10-17 15:34:30 +02:00

9 lines
194 B
Ruby

class AddPropertiesToDeployment < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
add_column :deployments, :on_stop, :string
end
end