We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6c97e3 commit 5ec42aeCopy full SHA for 5ec42ae
2 files changed
src/main/resources/schema.sql
@@ -1,4 +1,4 @@
1
-drop schema hr if exists;
+drop schema hr if exists cascade;
2
create schema hr;
3
4
create table hr.users (
@@ -63,7 +63,7 @@ create table hr.cities_2 (
63
64
65
66
-drop schema bookings if exists;
+drop schema bookings if exists cascade;
67
create schema bookings;
68
69
create table bookings.aircrafts (
src/test/resources/application.yml
@@ -57,3 +57,6 @@ conf:
57
"css_class": "fas fa-fw fa-2x fa-bicycle"
58
}
59
60
+spring:
61
+ jmx:
62
+ enabled: false
0 commit comments