Guest User

Untitled

a guest
Mar 19th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.43 KB | None | 0 0
  1. spring:
  2. datasource:
  3. driver-class-name: org.postgresql.Driver
  4. jdbcUrl: jdbc:postgresql:database
  5. username: root
  6. password: root
  7. schema: classpath:/db/init/schema.sql
  8. type: com.zaxxer.hikari.HikariDataSource
  9. # Hikari Properties
  10. poolName: SpringBootHikariCP
  11. maximumPoolSize: 5
  12. ...
  13.  
  14. [EL Info]: 2018-03-19 14:48:42.003--ServerSession(1586259225)--EclipseLink, version: Eclipse Persistence Services - 2.7.1.v20171221-bd47e8f
  15. [EL Info]: connection: 2018-03-19 14:48:42.117--ServerSession(1586259225)--/file:/C:/Users/Jonatan/Documents/GitHub/REST-Web-Services/web/out/production/classes/_unit login successful
  16. [EL Warning]: ddl: 2018-03-19 14:48:42.182--ServerSession(1586259225)--Removing UNIQUE constraint definition from [contributions.ID] because it is also a primary key.
  17. [EL Fine]: sql: 2018-03-19 14:48:42.183--ServerSession(1586259225)--Connection(650147402)--CREATE TABLE contributions (ID BIGINT NOT NULL, created TIMESTAMP NOT NULL, entity_version INTEGER NOT NULL, field VARCHAR(255) NOT NULL, status VARCHAR(255) NOT NULL, user_comment VARCHAR(255), verification_comment VARCHAR(255), verification_date TIMESTAMP, movie_id BIGINT NOT NULL, user_id BIGINT NOT NULL, verification_user BIGINT, PRIMARY KEY (ID))
  18. [EL Fine]: sql: 2018-03-19 14:48:42.185--ServerSession(1586259225)--SELECT 1
  19. [EL Warning]: 2018-03-19 14:48:42.186--ServerSession(1586259225)--Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.7.1.v20171221-bd47e8f): org.eclipse.persistence.exceptions.DatabaseException
  20. Internal Exception: org.postgresql.util.PSQLException: ERROR: the object creation scheme is not indicated
  21. Position: 14
  22. Error Code: 0
  23. Call: CREATE TABLE contributions (ID BIGINT NOT NULL, created TIMESTAMP NOT NULL, entity_version INTEGER NOT NULL, field VARCHAR(255) NOT NULL, status VARCHAR(255) NOT NULL, user_comment VARCHAR(255), verification_comment VARCHAR(255), verification_date TIMESTAMP, movie_id BIGINT NOT NULL, user_id BIGINT NOT NULL, verification_user BIGINT, PRIMARY KEY (ID))
  24. Query: DataModifyQuery(sql="CREATE TABLE contributions (ID BIGINT NOT NULL, created TIMESTAMP NOT NULL, entity_version INTEGER NOT NULL, field VARCHAR(255) NOT NULL, status VARCHAR(255) NOT NULL, user_comment VARCHAR(255), verification_comment VARCHAR(255), verification_date TIMESTAMP, movie_id BIGINT NOT NULL, user_id BIGINT NOT NULL, verification_user BIGINT, PRIMARY KEY (ID))")
  25. [EL Warning]: ddl: 2018-03-19 14:48:42.191--ServerSession(1586259225)--Removing UNIQUE constraint definition from [messages.id] because it is also a primary key.
  26. [EL Fine]: sql: 2018-03-19 14:48:42.191--ServerSession(1586259225)--Connection(733780656)--CREATE TABLE messages (id SERIAL NOT NULL, created TIMESTAMP NOT NULL, date_of_read TIMESTAMP, entity_version INTEGER NOT NULL, visible_for_recipient BOOLEAN NOT NULL, visible_for_sender BOOLEAN NOT NULL, subject VARCHAR(255) NOT NULL, text VARCHAR(4000) NOT NULL, unique_id VARCHAR(255) NOT NULL UNIQUE, recipient_id BIGINT NOT NULL, sender_id BIGINT NOT NULL, PRIMARY KEY (id))
  27. [EL Fine]: sql: 2018-03-19 14:48:42.192--ServerSession(1586259225)--SELECT 1
  28. [EL Warning]: 2018-03-19 14:48:42.193--ServerSession(1586259225)--Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.7.1.v20171221-bd47e8f): org.eclipse.persistence.exceptions.DatabaseException
  29. Internal Exception: org.postgresql.util.PSQLException: ERROR: the object creation scheme is not indicated
  30. Position: 14
  31. Error Code: 0
  32. Call: CREATE TABLE messages (id SERIAL NOT NULL, created TIMESTAMP NOT NULL, date_of_read TIMESTAMP, entity_version INTEGER NOT NULL, visible_for_recipient BOOLEAN NOT NULL, visible_for_sender BOOLEAN NOT NULL, subject VARCHAR(255) NOT NULL, text VARCHAR(4000) NOT NULL, unique_id VARCHAR(255) NOT NULL UNIQUE, recipient_id BIGINT NOT NULL, sender_id BIGINT NOT NULL, PRIMARY KEY (id))
  33. Query: DataModifyQuery(sql="CREATE TABLE messages (id SERIAL NOT NULL, created TIMESTAMP NOT NULL, date_of_read TIMESTAMP, entity_version INTEGER NOT NULL, visible_for_recipient BOOLEAN NOT NULL, visible_for_sender BOOLEAN NOT NULL, subject VARCHAR(255) NOT NULL, text VARCHAR(4000) NOT NULL, unique_id VARCHAR(255) NOT NULL UNIQUE, recipient_id BIGINT NOT NULL, sender_id BIGINT NOT NULL, PRIMARY KEY (id))")
  34. [EL Warning]: ddl: 2018-03-19 14:48:42.196--ServerSession(1586259225)--Removing UNIQUE constraint definition from [movies_info.ID] because it is also a primary key.
  35. [EL Fine]: sql: 2018-03-19 14:48:42.196--ServerSession(1586259225)--Connection(1392829997)--CREATE TABLE movies_info (ID BIGINT NOT NULL, dtype VARCHAR(31), entity_version INTEGER NOT NULL, reported_for_delete BOOLEAN NOT NULL, reported_for_update BOOLEAN NOT NULL, status VARCHAR(255) NOT NULL, movie_id BIGINT NOT NULL, box_office VARCHAR(255), box_office_country VARCHAR(255), country VARCHAR(255), genre VARCHAR(255), language VARCHAR(255), other_title_country VARCHAR(255), other_title VARCHAR(255), file_id_in_cloud VARCHAR(255), file_provider VARCHAR(255), release_date_country VARCHAR(255), release_date DATE, review VARCHAR(255), review_title VARCHAR(255), site_official VARCHAR(255), site VARCHAR(255), storyline VARCHAR(255), PRIMARY KEY (ID))
  36. [EL Fine]: sql: 2018-03-19 14:48:42.198--ServerSession(1586259225)--SELECT 1
  37. [EL Warning]: 2018-03-19 14:48:42.198--ServerSession(1586259225)--Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.7.1.v20171221-bd47e8f): org.eclipse.persistence.exceptions.DatabaseException
  38. ...
  39.  
  40. @Entity
  41. public class Contribution{...}
  42. @Entity
  43. public class Message{...}
Add Comment
Please, Sign In to add comment