Have two computers, with same app on both.
One runs SQLite3, other one runs PostgreSQL.
All Cucumber tests are passing on SQLite3 PC.
But Postgres PC fails when it comes to relations between models.
Records are created by FactoryGirl like so:
factory :user do |f|
f.email "test@gmail.com"
f.password "111111"
f.password_confirmation "111111"
end
factory :item do |f|
f.user_id 1
f.titles "My title"
f.keywords "some keywords"
f.price "900"
f.template 1
f.description "my little description"
end
And Pickle gem like so:
When user exists
And item exists
...
So item.user returns nil in PG (all other tests that don't require relations between the models still work)
Is there any difference between how PG and SQLite save relations between models?

user_idshould be1? – mu is too short Feb 5 at 5:02f.association :usermight work, or syntax maybe have changed more recently? github.com/thoughtbot/factory_girl/wiki/Usage – house9 Feb 5 at 5:23Email has already been taken. Does PG clean the database before every scenario? – Serge Vinogradoff Feb 5 at 13:18maximum value + 1. – Serge Vinogradoff Feb 5 at 14:43