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