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

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

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

  def change
    add_column :security_orchestration_policy_configurations, :configured_at, :datetime_with_timezone, null: true
  end
end