Advertisement
Guest User

Untitled

a guest
Jul 7th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. spring.datasource.primary.url=jdbc:postgresql://localhost:5432/mydb
  2. spring.datasource.primary.username=postgres
  3. spring.datasource.primary.password=pass
  4. spring.datasource.primary.driver-class-name=org.postgresql.Driver
  5. spring.datasource.primary.maxActive=10
  6. spring.datasource.primary.testWhileIdle = true
  7. spring.datasource.primary.validationQuery = SELECT 1
  8.  
  9. spring.jpa.properties.hibernate.default-schema=public
  10. spring.jpa.hibernate.ddl-auto:update
  11.  
  12. [ost-startStop-1] org.hibernate.tool.hbm2ddl.SchemaUpdate : HHH000388: Unsuccessful:
  13. create table sample_table (table_id serial not null, name varchar(255))
  14. 2017-07-07 10:52:51.145 ERROR 1446 --- [ost-startStop-1] org.hibernate.tool.hbm2ddl.SchemaUpdate :
  15. ERROR: permission denied to create "pg_catalog.sample_table"
  16. Detail: System catalog modifications are currently disallowed.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement