After doing migrations in a Django project I'm having to use quotes in SQL transaction in psql?
SELECT * FROM ClientProfile;
ERROR: relation "clientprofile" does not exist
LINE 1: SELECT * FROM ClientProfile;
SELECT * FROM "ClientProfile";
The second select Works!