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

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

class AddLastUsedAtToClusterAgentToken < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :cluster_agent_tokens, :last_used_at, :datetime_with_timezone
  end
end