Files
mchat/scripts/cleandb.sh
2026-04-10 12:00:03 +08:00

8 lines
227 B
Bash
Executable File

echo "[1/2] MYSQL"
docker exec ai-chat-mysql mysql -uroot -proot -D ai_chat -e "TRUNCATE TABLE chat_records;"
echo "[2/2] PG"
docker exec ai-chat-pgvector psql -U postgres -d ai_chat -c "TRUNCATE TABLE chat_record_vectors;"