mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-18 13:35:50 +00:00
A script to drop all the tables in reverse order
This commit is contained in:
parent
f8767ff2ec
commit
c818b982d5
1 changed files with 7 additions and 0 deletions
7
src/main/resources/db/mysql/cleanup.sql
Normal file
7
src/main/resources/db/mysql/cleanup.sql
Normal file
|
@ -0,0 +1,7 @@
|
|||
DROP TABLE if EXISTS visits;
|
||||
DROP TABLE if EXISTS pets;
|
||||
DROP TABLE if EXISTS owners;
|
||||
DROP TABLE if EXISTS types;
|
||||
DROP TABLE if EXISTS vet_specialties;
|
||||
DROP TABLE if EXISTS specialties;
|
||||
DROP TABLE if EXISTS vets;
|
Loading…
Reference in a new issue