0
votes

I have done setup of jhipster(using video ) and tried to create entity using jhipster. I have not taken any json file as input. To make it simple I have created entity Employee as....

Command yo jhipster:entity Employee

---Employee---

name String

email String


with no validation rules and relationship. Entity creation is successful but I cannot find any .sql file containing the sql command. I can see respective java files are generated in under src\main\java\com\mycompany\myapp\domain. Any idea where is the sql created?

1

1 Answers

2
votes

There are no generated SQL files. JHipster uses Liquibase for the changes to your Database. You should have these XML files in src/main/resources/config/liquibase/changelog/, doing the same as SQL files.