20220824164532_remove_recorded_changes_from_admin_action_logs.rb 242 B

123456789
  1. # frozen_string_literal: true
  2. class RemoveRecordedChangesFromAdminActionLogs < ActiveRecord::Migration[5.2]
  3. disable_ddl_transaction!
  4. def change
  5. safety_assured { remove_column :admin_action_logs, :recorded_changes, :text }
  6. end
  7. end