mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 04:41:43 +00:00
9 lines
397 B
Ruby
9 lines
397 B
Ruby
|
class ChangeRefererToOrigin < ActiveRecord::Migration[6.0]
|
||
|
def change
|
||
|
rename_column :access_logs, :http_referer, :http_origin
|
||
|
|
||
|
# Eliminar todos los referers anteriores manteniendo el origin
|
||
|
ActiveRecord::Base.connection.execute("update access_logs set http_origin = split_part(http_origin, '/', 1) || '//' || split_part(http_origin, '/', 2) where http_origin is not null")
|
||
|
end
|
||
|
end
|