8 lines
227 B
Bash
Executable File
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;"
|
|
|
|
|