5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-05 23:15:45 +00:00

Merge branch 'issue-13171' into panel.sutty.nl
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
f 2023-04-24 14:56:12 -03:00
commit 9a1cdaf20b

View file

@ -0,0 +1,8 @@
# frozen_string_literal: true
# Agrega la columna de nodo a los logs
class AddNodeToAccessLogs < ActiveRecord::Migration[6.1]
def change
add_column :access_logs, :node, :string, index: true
end
end