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