femslash-city/migrations/063_add_bandwidth_to_stats.rb
Agnes 596fd85f2f
Some checks failed
CI / test (push) Has been cancelled
accidentally leaked secrets so had to nuke shit fuck
2026-08-19 17:29:54 -04:00

9 lines
139 B
Ruby

Sequel.migration do
up {
add_column :stats, :bandwidth, :bigint, default: 0
}
down {
drop_column :stats, :bandwidth
}
end