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

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

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

  def change
    add_column :raw_usage_data, :version_usage_data_id_value, :bigint
  end
end