neocities/migrations/081_stats_bigint.rb
2015-12-26 04:33:26 -06:00

15 lines
267 B
Ruby

Sequel.migration do
up {
alter_table(:stats) do
set_column_type :hits, Bignum
set_column_type :views, Bignum
end
}
down {
alter_table(:stats) do
set_column_type :hits, Integer
set_column_type :views, Integer
end
}
end