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

20230529163335_add_show_in_cli_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: 3529b3d84e5516fa04ca51e38b86363233e62619 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddShowInCliToBroadcastMessage < Gitlab::Database::Migration[2.1]
  def change
    add_column :broadcast_messages, :show_in_cli, :boolean, default: true, null: false
  end
end