easier debugging

This commit is contained in:
Motiejus Jakštys
2021-03-25 11:34:30 +02:00
parent 5099c933b2
commit 6e5f66ee6b
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