# For details on Sequel migrations see # http://sequel.rubyforge.org/ # http://code.google.com/p/ruby-sequel/wiki/Migrations class PersonMigration < Sequel::Migration def up create_table :people do primary_key :id string :name end end def down drop_table :people end end