mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
6 lines
203 B
Bash
Executable file
6 lines
203 B
Bash
Executable file
#!/bin/sh
|
|
|
|
[ -z "$POSTGRES_USER" ] && POSTGRES_USER=kemal
|
|
[ -z "$POSTGRES_DB" ] && POSTGRES_DB=invidious
|
|
|
|
psql "$POSTGRES_DB" "$POSTGRES_USER" -c "ALTER TABLE users ADD COLUMN feed_needs_update boolean"
|