063_add_bandwidth_to_stats.rb 139 B

12345678910
  1. Sequel.migration do
  2. up {
  3. add_column :stats, :bandwidth, :bigint, default: 0
  4. }
  5. down {
  6. drop_column :stats, :bandwidth
  7. }
  8. end