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/