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

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

class AddChecksumsColumnToProjectMirrorData < Gitlab::Database::Migration[2.1]
  enable_lock_retries!

  def change
    add_column :project_mirror_data, :checksums, :jsonb, null: false, default: {}
  end
end