Skip to content

Instantly share code, notes, and snippets.

@edenir-anschau
Created August 8, 2015 22:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edenir-anschau/77a40c3ab15f1244e26f to your computer and use it in GitHub Desktop.
Save edenir-anschau/77a40c3ab15f1244e26f to your computer and use it in GitHub Desktop.
Hibernate hbm2ddl.auto possible values
list of possible options are:
validate: validate the schema, makes no changes to the database.
update: update the schema.
create: creates the schema, destroying previous data.
create-drop: drop the schema at the end of the session.
Source: http://stackoverflow.com/a/1689769
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment