Files
ubicloud/migrate/20231129_delete_total_nodes.rb
Daniel Farina 8fe39d6262 Drop obsolete vm_host.total_nodes column
We think we haven't used total_nodes in a while, and recently have
stopped writing data into the column, and after some time, should
finally remove it.

See 146364aa1e,
7427e66dc8
2024-01-09 15:44:03 -08:00

10 lines
141 B
Ruby

# frozen_string_literal: true
Sequel.migration do
change do
alter_table(:vm_host) do
drop_column :total_nodes
end
end
end