mirror of
https://github.com/neocities/neocities.git
synced 2025-04-25 09:42:36 +02:00
15 lines
267 B
Ruby
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
|