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

20200715171155_add_deployment_type_to_tracker.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 649331ecb54acc0800762151d519f08eadecfa04 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddDeploymentTypeToTracker < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :jira_tracker_data, :deployment_type, :smallint, default: 0, null: false
  end
end