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

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

class AddSnapshotNamespaceId < ActiveRecord::Migration[6.0]
  def change
    add_column :analytics_devops_adoption_snapshots, :namespace_id, :integer
  end
end