20161017095000_add_properties_to_deployment.rb 194 Bytes
Newer Older
1 2 3 4 5 6
class AddPropertiesToDeployment < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
7
    add_column :deployments, :on_stop, :string
8 9
  end
end