I recently upgraded the MySQL version of my rails application from 5.6 and 5.7 and I am facing this issue while seeding my database.
When I run the seeding, it fails/aborts with the following message.
MysqlWarning: Changing sql mode 'NO_AUTO_CREATE_USER' is deprecated. It will be removed in a future release.
I have NO_AUTO_CREATE_USER mode enabled in my database but it is still failing.
Can someone please tell me what can I do to fix this issue? Should I simply remove this mode from my database or is there another way to fix this?
Note: I removed the ONLY_FULL_GROUP_BY mode from the database earlier.