mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
9 lines
239 B
Ruby
9 lines
239 B
Ruby
class RenameStaffActionPk < ActiveRecord::Migration
|
|
def up
|
|
execute "ALTER INDEX admin_logs_pkey RENAME TO staff_action_logs_pkey"
|
|
end
|
|
|
|
def down
|
|
execute "ALTER INDEX staff_action_logs_pkey RENAME TO admin_logs_pkey"
|
|
end
|
|
end
|