mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
15 lines
269 B
Ruby
15 lines
269 B
Ruby
Sequel.migration do
|
|
up {
|
|
alter_table(:sites) do
|
|
set_column_type :hits, :bigint
|
|
set_column_type :views, :bigint
|
|
end
|
|
}
|
|
|
|
down {
|
|
alter_table(:sites) do
|
|
set_column_type :hits, Integer
|
|
set_column_type :views, Integer
|
|
end
|
|
}
|
|
end
|