5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-17 03:10:48 +00:00

migraciones de produccion

This commit is contained in:
f 2020-08-18 10:17:13 -03:00
parent 6b985d778b
commit 04b0ca6200
2 changed files with 4 additions and 2 deletions

View file

@ -1,9 +1,9 @@
class ChangeRefererToOrigin < ActiveRecord::Migration[6.0]
def change
rename_column :access_logs, :http_referer, :http_origin
return unless Rails.env.production?
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, '/', 3) where http_origin is not null")
end

View file

@ -1,5 +1,7 @@
class AddCrawlerToAccessLogs < ActiveRecord::Migration[6.0]
def change
return unless Rails.env.production?
add_column :access_logs, :crawler, :boolean, default: false
end
end