0
votes

I have created different entities in JHipster. I want to know if a new database table is created automatically for each entity or I should create them myself? I read JHipster's Creating an entity but it did not mention about this!

2

2 Answers

1
votes

Everything in the list at the top of the page you linked to (Creating an Entity) is created for you. This includes a database table and a liquibase change set, which tracks changes to your database. By default, the table name matches the entity name.

The table is created on your first run of the application after generating the entity. For updates to your tables, see the Liquibase section of the Using in Development docs.

0
votes

Yes Database table will create automatically,, also you can create database table your self thats your choice