mirror of
https://github.com/ershisan99/db-studio.git
synced 2025-12-17 05:09:25 +00:00
feat: mysql driver working, tests passing.
This commit is contained in:
@@ -2,12 +2,14 @@
|
||||
|
||||
# Clean up PostgreSQL test data
|
||||
docker exec -i db-postgres-test psql -U postgres <<EOF
|
||||
DROP TABLE IF EXISTS test_table;
|
||||
DROP TABLE IF EXISTS users;
|
||||
DROP TABLE IF EXISTS orders;
|
||||
EOF
|
||||
|
||||
# Clean up MySQL test data
|
||||
docker exec -i db-mysql-test mysql -uroot -pmysecretpassword --database=test_db<<EOF
|
||||
DROP TABLE IF EXISTS test_table;
|
||||
DROP TABLE IF EXISTS users;
|
||||
DROP TABLE IF EXISTS orders;
|
||||
EOF
|
||||
|
||||
# Stop and remove Docker containers and volumes
|
||||
|
||||
Reference in New Issue
Block a user