discourse/db/migrate/20130723212758_rename_admin_log.rb
Sam Saffron 30990006a9 DEV: enable frozen string literal on all files
This reduces chances of errors where consumers of strings mutate inputs
and reduces memory usage of the app.

Test suite passes now, but there may be some stuff left, so we will run
a few sites on a branch prior to merging
2019-05-13 09:31:32 +08:00

14 lines
339 B
Ruby

# frozen_string_literal: true
class RenameAdminLog < ActiveRecord::Migration[4.2]
def up
rename_table :admin_logs, :staff_action_logs
rename_column :staff_action_logs, :admin_id, :staff_user_id
end
def down
rename_table :staff_action_logs, :admin_logs
rename_column :admin_logs, :staff_user_id, :admin_id
end
end