0
我開始使用Jhipster。我在從現有實體Jhipster更新ddl
com.company.project_name.module_name.MyCastomEntity
我手動創建的現有實體。
我不想使用jhipster命令
yo jhipster:entity MyCustomEntity
如何使用DDL手動更改(實體創建/更新/刪除)後,現有實體更新?
我開始使用Jhipster。我在從現有實體Jhipster更新ddl
com.company.project_name.module_name.MyCastomEntity
我手動創建的現有實體。
我不想使用jhipster命令
yo jhipster:entity MyCustomEntity
如何使用DDL手動更改(實體創建/更新/刪除)後,現有實體更新?
配置數據庫屬性在pom.xml
和使用./mvnw liquibase:diff
生成,你將在src/main/resources/config/liquibase/changelog
目錄存儲和src/main/resources/config/liquibase/master.xml
這是指它Liquibase遷移文件中記載的JHipster web site
謝謝!我不小心看到了文檔! – Dmitry