first commit

This commit is contained in:
Adam Meehan
2008-05-02 16:42:51 +10:00
commit 591ea3126b
11 changed files with 284 additions and 0 deletions

9
spec/resources/schema.rb Normal file
View File

@@ -0,0 +1,9 @@
ActiveRecord::Schema.define(:version => 1) do
create_table "people", :force => true do |t|
t.string "name"
t.datetime "birth_date_and_time"
t.date "birth_date"
end
end