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

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

class AddDisplayNamespaceIdToSegments < ActiveRecord::Migration[6.0]
  def change
    add_column :analytics_devops_adoption_segments, :display_namespace_id, :integer
  end
end