79596361

Date: 2025-04-28 11:26:48
Score: 2
Natty:
Report link

You are getting the error no such column: users.aw because your database table users does not have a column named aw, but your code or a query is trying to access it.

Quick fix:

Check your User model and database structure.

Make sure all the fields you query (like aw) actually exist.

Maybe you forgot to update the database after changing the model? ➔ Try running a migration or recreate your database.

Here’s the open source code that you can check: https://github.com/socialnotebooks/socialnotebooks-frontend/blob/main/src/app/feeds/feeds.component.css

More Information: Visit our website: http://www.socialnotebooks.com/

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: user30393464