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

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

class AddNamespaceIdToBroadcastMessage < Gitlab::Database::Migration[2.0]
  enable_lock_retries!

  def change
    add_column :broadcast_messages, :namespace_id, :bigint
  end
end