mirror of
https://github.com/iv-org/invidious.git
synced 2025-08-09 20:24:03 +00:00
.github
assets
config
migrate-scripts
migrate-db-17cf077.sh
migrate-db-1c8075c.sh
migrate-db-1eca969.sh
migrate-db-30e6d29.sh
migrate-db-3646395.sh
migrate-db-3bcb98e.sh
migrate-db-52cb239.sh
migrate-db-6e51189.sh
migrate-db-701b5ea.sh
migrate-db-88b7097.sh
migrate-db-8e884fe.sh
sql
config.example.yml
docker
kubernetes
locales
mocks
screenshots
scripts
spec
src
.ameba.yml
.editorconfig
.gitattributes
.gitignore
.gitmodules
CHANGELOG.md
CHANGELOG_legacy.md
LICENSE
Makefile
README.md
TRANSLATION
docker-compose.yml
invidious.service
shard.lock
shard.yml
videojs-dependencies.yml
7 lines
203 B
Bash
Executable File
7 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"
|