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: fac73753d5b44fba877c479b121b8ed1889adaf0 (plain)
1
2
3
4
5
6
7
8
9
class AddEnvironmentTypeToEnvironments < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

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