Unexpected behavior when updating entities with the command "jhipster import-jdl app.jh" #821
Open
1 task done
Labels
bug 🐞
Something isn't working
Overview of the issue
When the command is executed, all the entities are updated and not only the one with changes.
Reproduce the error
Suggest a Fix
The database type is set incorrectly in the file ".yo-rc.json", currently when generating a microservice with sqlite the file is generated as follows:
"databaseType": "sqllite",
"prodDatabaseType": "mysql",
"devDatabaseType": "h2Disk",
The correct thing should I think it should be, which is how it is generated in the java generator
"databaseType": "sql",
"prodDatabaseType": "mysql",
"devDatabaseType": "h2Disk",
When adjusting manually, entities with changes are already detected, but all entities are still updated.
JHipster Version(s)
3.0.1
Browsers and Operating System
The text was updated successfully, but these errors were encountered: