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

20210805085706_add_rule_index_to_security_orchestration_policy_rule_schedules.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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