Building with Rake

Data Objects On Ruby

class PersonTable < DOOR::Table
  table "person" do
    field serial, :id, pk
    field varchar(20), :name
  end
end