summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220325050642_drop_integrations_template_column.rb
blob: e110c307a382e34623e7679cdadf9bd4c1a17f69 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class DropIntegrationsTemplateColumn < Gitlab::Database::Migration[1.0]
  enable_lock_retries!

  def change
    remove_column :integrations, :template, :boolean, default: false
  end
end