I have a docker container that I have created a table in called "first_app_firstresource." When I try, however, to delete this table, it does nothing. Instead, this is what happens:
docker=# \d
Part of the table...
Schema | Name | Type | Owner
--------------------------------------------
public | first_app_firstresource | table | docker
then it goes straight to...
docker-#
Notice now instead of =#, it is now -#.
I then try to drop the table with
docker-# drop table first_app_firstresource
and nothing whatsoever happens.
I have seen Postgresql DROP TABLE doesn't work, and adding quotes doesn't seem to do anything, either.