mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 15:36:22 +00:00
Merge branch 'issue-13029' into panel.sutty.nl
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
commit
3da39d58a7
1 changed files with 10 additions and 0 deletions
|
@ -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
|
Loading…
Reference in a new issue