I'm new to postgresql and I can't seem to get it to drop a table.
db_dev=# \dt
List of relations
Schema | Name | Type | Owner
--------+-------------+-------+-------
public | DataSources | table | ted
public | Emails | table | ted
public | Users | table | ted
(3 rows)
When I try to delete the users table it gives an error:
db_dev=# drop table Users;
ERROR: table "users" does not exist
What am I doing wrong?