In schema.sql, deal_images table has 5 columns, none can be null. (see line 95)
In seeds_deals.sql, the insertions from line 42 to 99 only insert into two columns, therefore the insertions fail.
So either make it two columns in schema.sql, or insert the other columns of info in seeds_deals.sql. I'm not sure what deal_image_key and deal_image_object are so i don't wanna just delete them..
In schema.sql, deal_images table has 5 columns, none can be null. (see line 95)
In seeds_deals.sql, the insertions from line 42 to 99 only insert into two columns, therefore the insertions fail.
So either make it two columns in schema.sql, or insert the other columns of info in seeds_deals.sql. I'm not sure what deal_image_key and deal_image_object are so i don't wanna just delete them..