femslash-city/migrations/063_add_bandwidth_to_stats.rb

10 lines
139 B
Ruby
Raw Permalink Normal View History

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