16 lines
269 B
Ruby
16 lines
269 B
Ruby
|
|
Sequel.migration do
|
||
|
|
up {
|
||
|
|
alter_table(:stats) do
|
||
|
|
set_column_type :hits, :bigint
|
||
|
|
set_column_type :views, :bigint
|
||
|
|
end
|
||
|
|
}
|
||
|
|
|
||
|
|
down {
|
||
|
|
alter_table(:stats) do
|
||
|
|
set_column_type :hits, Integer
|
||
|
|
set_column_type :views, Integer
|
||
|
|
end
|
||
|
|
}
|
||
|
|
end
|