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

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

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

  def change
    add_column :security_scans, :info, :jsonb, null: false, default: {}
  end
end