Skip to content

Commit

Permalink
Fix #64: Document settings of default schema on Oracle database
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Dvorak committed May 8, 2016
1 parent 27eb5d5 commit ae693ca
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions powerauth-docs/source/tutorial/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ spring.jpa.hibernate.ddl-auto=none

These parameters are of course only for the testing purposes, they are not suitable for production environment. They should be overridden for your production environment using a standard [Spring database connectivity related properties](https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-sql.html#boot-features-connect-to-production-database).

Note that some database engines (for example MySQL) let you specify the default schema as a part of a URL. Other engines (for example Oracle) do not allow this. In order to specify the correct schema, you need to use following property:

```sh
spring.jpa.properties.hibernate.default_schema=powerauth
```

## PowerAuth 2.0 Server configuration

_(optional)_ Optionally, you may set up following properties in order to configure your PowerAuth 2.0 Server instance:
Expand Down

0 comments on commit ae693ca

Please sign in to comment.