neocities/migrations/063_add_bandwidth_to_stats.rb
2015-05-02 02:34:24 -07:00

9 lines
139 B
Ruby

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