summaryrefslogtreecommitdiff
path: root/db/migrate/20210309181019_add_last_used_at_to_cluster_agent_token.rb
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