Reputation: 647
I have been using the postgres database on heroku for a while. and suddenly I had some problems on saving to database I got this error all the time
Insufficient privilege, permission denied for relation table
its a problem of user permission , but I'm confused why it happened , because it was working correctly before
Upvotes: 0
Views: 1027
Reputation: 37507
Check your heroku pg:info
output - chances are you've exceeded the free plan permitted number of rows (assuming you're using a hobby-basic)
Upvotes: 2