JAVA-3247 further changes to reduce logging build pass

This commit is contained in:
Dhawal Kapil 2021-08-21 14:35:49 +05:30
parent b6a5974f85
commit fae92b4fa6
2 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,6 @@
drop table if exists USERS;
drop table if exists country;
drop table if exists BOOK;
create table USERS(
ID int not null AUTO_INCREMENT,
@ -12,4 +13,10 @@ CREATE TABLE country (
id INTEGER NOT NULL AUTO_INCREMENT,
name VARCHAR(128) NOT NULL,
PRIMARY KEY (id)
);
);
create table BOOK(
ID int not null AUTO_INCREMENT,
NAME varchar(128) not null,
PRIMARY KEY ( ID )
);

View File

@ -12,5 +12,5 @@ hibernate.cache.use_second_level_cache=true
hibernate.cache.use_query_cache=true
hibernate.cache.region.factory_class=org.hibernate.cache.ehcache.EhCacheRegionFactory
#spring.jpa.properties.hibernate.hbm2ddl.import_files=import_active_users.sql,import_inactive_users.sql
spring.jpa.properties.hibernate.hbm2ddl.import_files=import_books.sql
spring.datasource.data=import_*_users.sql