20220824164433_add_human_identifier_to_admin_action_logs.rb 345 B

12345678910111213
  1. # frozen_string_literal: true
  2. class AddHumanIdentifierToAdminActionLogs < ActiveRecord::Migration[6.1]
  3. def change
  4. safety_assured do
  5. change_table(:admin_action_logs, bulk: true) do |t|
  6. t.column :human_identifier, :string
  7. t.column :route_param, :string
  8. t.column :permalink, :string
  9. end
  10. end
  11. end
  12. end