when doing migration (rails 4.2.7.1 and 4.2.8 on postgres db), rails interprets job_id as a reference to job table (which does not exist).
Changing the job_id string in the migration file:
t.string :job_id, null: false, foreign_key: false
(add foreign_key: false) solves the problem
when doing migration (rails 4.2.7.1 and 4.2.8 on postgres db), rails interprets job_id as a reference to job table (which does not exist). Changing the job_id string in the migration file: t.string :job_id, null: false, foreign_key: false (add foreign_key: false) solves the problem