Skip to content
Snippets Groups Projects
Unverified Commit dda39f2d authored by Martin Weise's avatar Martin Weise
Browse files

Try to solve the test

parent 39245ac3
No related branches found
No related tags found
3 merge requests!129New module for citation as they occur multiple,!123Resolve "Concepts for columns, Units for values of columns",!121Modified logging, modified logging level, modified flasgger endpoint
...@@ -2,7 +2,6 @@ package at.tuwien.entities.database.table.columns.concepts; ...@@ -2,7 +2,6 @@ package at.tuwien.entities.database.table.columns.concepts;
import at.tuwien.entities.database.table.columns.TableColumn; import at.tuwien.entities.database.table.columns.TableColumn;
import lombok.*; import lombok.*;
import org.hibernate.annotations.GenericGenerator;
import org.springframework.data.annotation.CreatedDate; import org.springframework.data.annotation.CreatedDate;
import org.springframework.data.jpa.domain.support.AuditingEntityListener; import org.springframework.data.jpa.domain.support.AuditingEntityListener;
......
...@@ -12,12 +12,12 @@ import java.util.List; ...@@ -12,12 +12,12 @@ import java.util.List;
@Data @Data
@Entity @Entity
@Builder @Builder
@ToString
@AllArgsConstructor @AllArgsConstructor
@NoArgsConstructor @NoArgsConstructor
@ToString
@EntityListeners(AuditingEntityListener.class) @EntityListeners(AuditingEntityListener.class)
@EqualsAndHashCode(onlyExplicitlyIncluded = true) @EqualsAndHashCode(onlyExplicitlyIncluded = true)
@Table(name = "mdb_units") @javax.persistence.Table(name = "mdb_units")
public class Unit { public class Unit {
@Id @Id
......
...@@ -20,4 +20,4 @@ spring.jpa.properties.hibernate.hbm2ddl.schema_filter_provider=at.tuwien.hiberna ...@@ -20,4 +20,4 @@ spring.jpa.properties.hibernate.hbm2ddl.schema_filter_provider=at.tuwien.hiberna
# additional logging # additional logging
logging.level.org.hibernate.SQL=debug logging.level.org.hibernate.SQL=debug
logging.level.org.hibernate.type=warn logging.level.org.hibernate.type=trace
\ No newline at end of file \ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment