added migration with descriptions for all series

This commit is contained in:
Rudis Muiznieks 2023-04-05 13:39:49 -05:00
parent 76e264c4b4
commit 3b430f0ed0
Signed by: rudism
GPG Key ID: CABF2F86EF7884F9
2 changed files with 832 additions and 1377 deletions

File diff suppressed because it is too large Load Diff

View File

@ -20,7 +20,7 @@ if [ -f "$db" ]; then
fi
fi
for sql in "$dbdir"/migrations/*; do
for sql in "$dbdir"/migrations/*.sql; do
echo "$sql..."
sqlite3 radiostasis.db < "$sql"
done