Rename the PK index to support table rename
This commit is contained in:
parent
361f158b27
commit
05fc50006d
|
@ -0,0 +1,9 @@
|
|||
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
|
Loading…
Reference in New Issue