20240906090321_drop_unused_article_references.rb 350 B

123456789101112
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class DropUnusedArticleReferences < ActiveRecord::Migration[7.0]
  3. def change
  4. # return if it's a new setup
  5. return if !Setting.exists?(name: 'system_init_done')
  6. remove_column :ticket_articles, :references
  7. Ticket::Article.reset_column_information
  8. end
  9. end