first commit

This commit is contained in:
rsnrk 2024-04-30 14:32:37 +02:00
commit 5847fb0582
14 changed files with 543 additions and 0 deletions

6
extensions_postgres.sh Normal file
View file

@ -0,0 +1,6 @@
#!/bin/sh
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL
create extension pg_trgm;
select * FROM pg_extension;
EOSQL