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

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

class AddStatusToClusterAgentTokens < Gitlab::Database::Migration[1.0]
  def change
    add_column :cluster_agent_tokens, :status, :smallint, null: false, default: 0
  end
end