lib/ree_lib/packages/ree_migrator/spec/sample_migrations/schema_migrations/create_test_table.rb



Sequel.migration do
  change do
    create_table :test_table do
      primary_key :id, type: :Bignum
    end
  end
end