debian-mirror-gitlab/db/migrate/20220614095912_add_has_vulnerabilities_to_cluster_agents.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
248 B
Ruby
Raw Normal View History

2022-07-23 23:45:48 +05:30
# frozen_string_literal: true
class AddHasVulnerabilitiesToClusterAgents < Gitlab::Database::Migration[2.0]
enable_lock_retries!
def change
add_column :cluster_agents, :has_vulnerabilities, :boolean, default: false, null: false
end
end