5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 10:06:23 +00:00

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

This commit is contained in:
f 2023-04-11 16:22:29 -03:00
commit 3da39d58a7

View file

@ -0,0 +1,10 @@
# frozen_string_literal: true
# Agrega las columnas de calculo de emisiones de CO2
class AddSustainabilityToAccessLogs < ActiveRecord::Migration[6.1]
def change
%i[datacenter_co2 network_co2 consumer_device_co2 production_co2 total_co2].each do |column|
add_column :access_logs, column, :decimal, limit: 53
end
end
end