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

20160907131111_add_environment_type_to_environments.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 34463178fcabd67dac813701c4ea691a920d0f21 (plain)
1
2
3
4
5
6
7
8
9
class AddEnvironmentTypeToEnvironments < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

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