Skip to content

Commit 5ec42ae

Browse files
committed
1 parent c6c97e3 commit 5ec42ae

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

src/main/resources/schema.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
drop schema hr if exists;
1+
drop schema hr if exists cascade;
22
create schema hr;
33

44
create table hr.users (
@@ -63,7 +63,7 @@ create table hr.cities_2 (
6363

6464

6565

66-
drop schema bookings if exists;
66+
drop schema bookings if exists cascade;
6767
create schema bookings;
6868

6969
create table bookings.aircrafts (

src/test/resources/application.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,6 @@ conf:
5757
"css_class": "fas fa-fw fa-2x fa-bicycle"
5858
}
5959
60+
spring:
61+
jmx:
62+
enabled: false

0 commit comments

Comments
 (0)