I'm currently working on a Flask server, and a postgresql database running in a docker. I wanted to delete a table with a migration using alembic, but when I wanted to apply it it was just frozen and I had a process
DROP TABLE waiting
that was just... waiting... So I tried to delete the table directly with psql:
<db_name>=# DROP TABLE <table_name>
But I had the same result, it was never ending, even after supressing all columns in the table. Btw that table is a list of mails linked to another with users, but it shouldn't be a problem.
Does somebody have an idea ?