diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2018-02-20 23:38:06 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2018-02-23 11:15:00 +0900 |
commit | cfbde022eedde2ae45e2dde9e3d8792933f070f4 (patch) | |
tree | 98842ff6bc004631717fbb4aedf909169b44b9f4 /activemodel | |
parent | 5d78256ee31edddf9e5deb9a50f2633482279bc3 (diff) | |
download | rails-cfbde022eedde2ae45e2dde9e3d8792933f070f4.tar.gz rails-cfbde022eedde2ae45e2dde9e3d8792933f070f4.tar.bz2 rails-cfbde022eedde2ae45e2dde9e3d8792933f070f4.zip |
PostgreSQL: Allow BC dates like datetime consistently
BC dates are supported by both date and datetime types.
https://www.postgresql.org/docs/current/static/datatype-datetime.html
Since #1097, new datetime allows year zero as 1 BC, but new date does
not. It should be allowed even in new date consistently.
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/lib/active_model/type/date.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/type/date.rb b/activemodel/lib/active_model/type/date.rb index 8cecc16d0f..8ec5deedc4 100644 --- a/activemodel/lib/active_model/type/date.rb +++ b/activemodel/lib/active_model/type/date.rb @@ -42,7 +42,7 @@ module ActiveModel end def new_date(year, mon, mday) - if year && year != 0 + unless year.nil? || (year == 0 && mon == 0 && mday == 0) ::Date.new(year, mon, mday) rescue nil end end |