debian-mirror-gitlab/db/migrate/20200715171155_add_deployment_type_to_tracker.rb
2020-10-24 23:57:45 +05:30

10 lines
226 B
Ruby

# 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