Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Fix the torrent_id sequence

Cette révision appartient à :
tomleb 2017-05-11 15:00:35 -04:00
Parent 9c6c66d0e9
révision e85ebde977

Voir le fichier

@ -1,4 +1,12 @@
#!/bin/bash
# Restore the database from a postgres dump
pg_restore --username "${POSTGRES_USER}" -d ${POSTGRES_DB} "/${PANTSU_POSTGRES_DBFILE}"
last_nyaa_torrent_id=923001
# Setting the sequence to start from after the latest nyaa torrent.
psql -U postgres "${POSTGRES_DB}" <<EOF
alter sequence torrents_torrent_id_seq start
${last_nyaa_torrent_id} restart
EOF