20240618074549_drop_templates_groups_table.rb 286 B

12345678910
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class DropTemplatesGroupsTable < 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. drop_table :templates_groups
  7. end
  8. end