mirror of
https://github.com/ditkrg/validates_timeliness.git
synced 2026-01-23 22:36:45 +00:00
11 lines
252 B
Ruby
11 lines
252 B
Ruby
ActiveRecord::Schema.define(:version => 1) do
|
|
|
|
create_table "people", :force => true do |t|
|
|
t.column "name", :string
|
|
t.column "birth_date_and_time", :datetime
|
|
t.column "birth_date", :date
|
|
t.column "birth_time", :time
|
|
end
|
|
|
|
end
|