mastodon/db/migrate/20220824164433_add_human_identifier_to_admin_action_logs.rb
2023-11-06 16:15:48 +00:00

14 lines
345 B
Ruby

# frozen_string_literal: true
class AddHumanIdentifierToAdminActionLogs < ActiveRecord::Migration[6.1]
def change
safety_assured do
change_table(:admin_action_logs, bulk: true) do |t|
t.column :human_identifier, :string
t.column :route_param, :string
t.column :permalink, :string
end
end
end
end