easier debugging

This commit is contained in:
2021-05-19 22:57:46 +03:00
committed by Motiejus Jakštys
parent d1380ec907
commit 5b805bde9c
4 changed files with 46 additions and 58 deletions

View File

@@ -16,7 +16,7 @@ clean:
.PHONY: clean-tables
clean-tables:
for t in $$(./db -c '\dt' | awk '/demo|integ/{print $$3}'); do \
for t in $$(./db -c '\dt' | awk '/demo|debug|integ/{print $$3}'); do \
./db -c "drop table $$t"; \
done