Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20161017095000_add_properties_to_deployment.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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