about summary refs log tree commit diff
path: root/db/migrate/20220824164433_add_human_identifier_to_admin_action_logs.rb
blob: 2cb8cddf19b42f02e09f105b9ce53774265eec4f (plain) (blame)
1
2
3
4
5
6
7
class AddHumanIdentifierToAdminActionLogs < ActiveRecord::Migration[6.1]
  def change
    add_column :admin_action_logs, :human_identifier, :string
    add_column :admin_action_logs, :route_param, :string
    add_column :admin_action_logs, :permalink, :string
  end
end