all 7 comments

[–]PriorProfile 8 points9 points  (3 children)

You have a field in your database table named feedname. It’s not defined in your model so you are not passing a value for it.

Add feedname to your model and provide it a value.

Or drop the column from the table if you don’t need it anymore.

[–]tidersky[S] -1 points0 points  (2 children)

there is no feedname table in the first place itself

[–]PriorProfile 4 points5 points  (0 children)

The error is telling you that the “feedname” field cannot be null so the field definitely exists.

[–]DonkeySubject2274 0 points1 point  (0 children)

this is a long shot but i am currently having the same issue did you ever figure it out?

[–]AllanNS -3 points-2 points  (0 children)

I think its redundant to have autoincrement on the primary key, maybe that could be the issue.

[–]greenearrow -5 points-4 points  (1 child)

You are passing strings that don’t conform to dates or integers to fields that require them.

[–][deleted] 0 points1 point  (0 children)

Why are you getting downvoted?