changed schema to be version agnostic

This commit is contained in:
Adam Meehan 2008-06-30 22:37:51 +10:00
parent a69e018992
commit 8b69ec8134

View File

@ -1,9 +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"
t.column "name", :string
t.column "birth_date_and_time", :datetime
t.column "birth_date", :date
end
end