mirror of
https://github.com/ditkrg/validates_timeliness.git
synced 2026-01-23 14:27:52 +00:00
10 lines
194 B
Ruby
10 lines
194 B
Ruby
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
|