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. See146364aa1e
,7427e66dc8
10 lines
141 B
Ruby
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
|