summaryrefslogtreecommitdiff
path: root/db/migrate/20160907131111_add_environment_type_to_environments.rb
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