mirror of
https://github.com/ditkrg/validates_timeliness.git
synced 2026-01-24 14:56:43 +00:00
changed schema to be version agnostic
This commit is contained in:
parent
a69e018992
commit
8b69ec8134
@ -1,9 +1,9 @@
|
|||||||
ActiveRecord::Schema.define(:version => 1) do
|
ActiveRecord::Schema.define(:version => 1) do
|
||||||
|
|
||||||
create_table "people", :force => true do |t|
|
create_table "people", :force => true do |t|
|
||||||
t.string "name"
|
t.column "name", :string
|
||||||
t.datetime "birth_date_and_time"
|
t.column "birth_date_and_time", :datetime
|
||||||
t.date "birth_date"
|
t.column "birth_date", :date
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user