mirror of
https://github.com/neocities/neocities.git
synced 2026-05-26 15:18:35 +00:00
7d8ad81fd0
stats.
12 lines
275 B
Ruby
12 lines
275 B
Ruby
Sequel.migration do
|
|
up {
|
|
DB.drop_column :daily_site_stats, :bandwidth
|
|
DB.add_column :daily_site_stats, :bandwidth, :integer, default: 0
|
|
}
|
|
|
|
down {
|
|
DB.drop_column :daily_site_stats, :bandwidth
|
|
DB.add_column :daily_site_stats, :bandwidth, :integer
|
|
}
|
|
end
|