Sunil Kumar
Sunil Kumar

Reputation: 21

How can we delete entity in jhipster application

I am new to Jhipster application. I have created entity. But now i want to delete this entity.

could you please anyone tell me about command and help me on this activity.

Upvotes: 2

Views: 1260

Answers (1)

Gaël Marziou
Gaël Marziou

Reputation: 16294

Unfortunately, it must be done manually.

The easiest way is to revert the git commit of the entity creation. This is why it's a good practice to always commit after entity creation.

Beside deleting files, you may also want to create a Liquibase changelog to drop the entity's table.

Upvotes: 1

Related Questions