I have a table called Users (with an uppercase U) and I have the following query in one of my custom DB scripts:
var query = 'INSERT INTO Users (email, password) VALUES ($1, $2)';
However, I’m getting an error saying that a “users” table is not available. Are the queries case-insensitive?