SQLSTATE[23502]: Not null violation: 7 ERROR: null value in column "linked_record_id" violates not-null constraint
DETAIL: Failing row contains (3, null, 12, 1, 093b03b7-3fda-352d-8ad7-dcdb5d5c2d27, 2017-08-21 15:21:10, 2017-08-21 15:21:10, null). (SQL: insert into "records" ("linked_record_id", "company_id", "form_id", "uuid", "updated_at", "created_at") values (, 12, 1, 093b03b7-3fda-352d-8ad7-dcdb5d5c2d27, 2017-08-21 15:21:10, 2017-08-21 15:21:10) returning "record_id")
Records::create([
'linked_record_id' => null,
'company_id' => 12,
'form_id' => '1',
'uuid' => Uuid::uuid()
])