It's always a good idea to add the CASCADE keyword to SQL DROP TABLE commands, just to be sure that you're deleting all references to the tables you're deleting. You can add this in the db_build.sql file.
DROP TABLE IF EXISTS users, cars, rentals CASCADE;
It's always a good idea to add the CASCADE keyword to SQL DROP TABLE commands, just to be sure that you're deleting all references to the tables you're deleting. You can add this in the db_build.sql file.
DROP TABLE IF EXISTS users, cars, rentals CASCADE;