Taskfile: drop-test-db (#7623)

[skip ci]
pull/7626/head
Joe Chen 2023-12-17 16:49:37 -05:00 committed by GitHub
parent 25fdeaac49
commit 41d473e999
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -90,3 +90,12 @@ tasks:
desc: Identify legacy and deprecated lines
cmds:
- grep -rnw "\(LEGACY\|Deprecated\)" internal
drop-test-db:
desc: Drop the test database
cmds:
- |
for dbname in $(psql -Xc "copy (select datname from pg_database where datname like 'gogs-%') to stdout"); do
dropdb "$dbname"
echo "dropped $dbname"
done