mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-15 23:30:46 +00:00
8 lines
207 B
Ruby
8 lines
207 B
Ruby
# 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
|