hibernate.hbm2ddl.auto (e.g. none (default value), create-only, drop, create, create-drop, validate, and update)
Setting to perform SchemaManagementTool actions automatically as part of the SessionFactory lifecycle. Valid options are defined by the externalHbm2ddlName value of the Action enum:
drop
Database dropping will be generated.
create
Database dropping will be generated followed by database creation.
validate
Validate the database schema
update
Update the database schema
Source : Hibernate Documentation