summaryrefslogtreecommitdiff
path: root/db/migrate/20161017095000_add_properties_to_deployment.rb
blob: f620ee0de1cd76c639d6289605b70c33772988ae (plain)
1
2
3
4
5
6
7
8
9
class AddPropertiesToDeployment < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :deployments, :on_stop, :string
  end
end