summaryrefslogtreecommitdiff
path: root/db/migrate/20210805085706_add_rule_index_to_security_orchestration_policy_rule_schedules.rb
blob: ea77e29d3650613b3d27a700227b2e5d62caf7f4 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddRuleIndexToSecurityOrchestrationPolicyRuleSchedules < ActiveRecord::Migration[6.1]
  def change
    add_column :security_orchestration_policy_rule_schedules, :rule_index, :integer, null: false, default: 0
  end
end