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