5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-17 06:50:49 +00:00

Agregar created_at a access_logs para poder agrupar por fecha

This commit is contained in:
f 2021-09-03 15:28:45 -03:00
parent 094a8092de
commit 604c16bfb8

View file

@ -0,0 +1,18 @@
# frozen_string_literal: true
# Cambia los msec a datetime para poder agregar por tiempos
class AddCreateAtToAccessLogs < ActiveRecord::Migration[6.1]
def up
add_column :access_logs, :created_at, :datetime, precision: 6
create_trigger(compatibility: 1).on(:access_logs).before(:insert) do
'new.created_at := to_timestamp(new.msec)'
end
ActiveRecord::Base.connection.execute('update access_logs set created_at = to_timestamp(msec);')
end
def down
remove_column :access_logs, :created_at
end
end