debian-mirror-gitlab/db/migrate/20210309181019_add_last_used_at_to_cluster_agent_token.rb
2021-04-17 20:07:23 +05:30

10 lines
221 B
Ruby

# 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