diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c472cd..5006f6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,7 +18,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Spring Boot обновлен до 1.5.8.RELEASE. - Изменен загрузочный спиннер. Спасибо loading.io за это. - При смене юзера/логауте БД не очищается. -- Стратегия миграции БД изменилась с `update` на `create-drop`. ### Исправлено - Баг с иконкой в трее в случае смены пользователя. diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 38fbf76..5c81674 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -7,7 +7,7 @@ logging.file = vkmusic.log spring.datasource.url=jdbc:sqlite:vkmusic.db spring.datasource.driverClassName=org.sqlite.JDBC spring.jpa.properties.hibernate.dialect=com.enigmabridge.hibernate.dialect.SQLiteDialect -spring.jpa.hibernate.ddl-auto=create-drop +spring.jpa.hibernate.ddl-auto=update # ############# spring.jmx.enabled=false \ No newline at end of file