I downloaded a Rails codebase on Windows. When I try to run functional tests the fixtures aren't being initialized, with errors like:
Field 'created_at' doesn't have a default value: INSERT INTO `mytable` (`name`, `code`) VALUES ('MyString', 'MyString')
It's like record_timestamps is set to false, but explicitly setting it to true in config/test.rb makes no difference. The tests work correctly on a Linux machine. How can I get the fixtures to load properly?