echo "This will reset ALL data! Are you sure you want to proceed? [y/N]"
read input
if [ "$input" == "y" ]
then
rm database.sqlite3
./setup_db
echo "Reset completed, have a nice day."
else
echo "Reset cancelled."
fi
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.