Model from database
Last updated
Creating a new model from a database is now more accurate and more flexible.
Entity level :
@DbCatalog(..)
@DbSchema(..)
@DbTable(..)
@DbView
Attribute level :
@DbType(..)
@DbName(..)
New options allow you to define more precisely what you want to get from the database :
linksManyToOne: true
linksOneToMany: false
linksManyToMany: false
dbComment : false
dbCatalog : false
dbSchema : false
dbTable : false
dbView : false
dbName : false
dbType : false
dbDefaultValue: falsemodel files are now always created in UTF-8
Last updated