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

20161006104309_add_state_to_environment.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a6fd1a6a93123c86c578041d359f08c4e824f6c (plain)
1
2
3
4
5
6
7
8
9
class AddStateToEnvironment < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :environments, :state, :string
  end
end