Rails is returning the wrong date from my database records. For my model ("Target"), if I run in script/console:
Target.find :all
I get all my records with the "recorded_on" field reading dates from "2000-01-01 xx:xx:xx".
If I take the same database and run in the sqlite3 console:
SELECT * FROM targets;
I get all my records with the "recorded_on" field reading dates from "2009-04-22 xx:xx:xx", which are the correct dates.
The time values seem to be correct between the two, only the date values are off.
What's going on?