Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
DarioGii committed Dec 13, 2024
1 parent 2517583 commit fb85ba9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/main/java/stirling/software/SPDF/model/Authority.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import jakarta.persistence.Table;

@Entity
@Table(name = "authorities", schema = "stirling_pdf")
@Table(name = "authorities")
public class Authority implements Serializable {

private static final long serialVersionUID = 1L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import jakarta.persistence.Table;

@Entity
@Table(name = "persistent_logins", schema = "stirling_pdf")
@Table(name = "persistent_logins")
public class PersistentLogin {

@Id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

@Entity
@Data
@Table(name = "sessions", schema = "stirling_pdf")
@Table(name = "sessions")
public class SessionEntity implements Serializable {
@Id private String sessionId;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/stirling/software/SPDF/model/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import jakarta.persistence.*;

@Entity
@Table(name = "users", schema = "stirling_pdf")
@Table(name = "users")
public class User implements Serializable {

private static final long serialVersionUID = 1L;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application-postgres.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
spring.datasource.driver-class-name=org.postgresql.Driver
spring.datasource.url=jdbc:postgresql://localhost:5432/postgres
spring.datasource.url=jdbc:postgresql://db:5432/postgres
spring.datasource.username=postgres
spring.datasource.password=postgres
spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect
Expand Down

0 comments on commit fb85ba9

Please sign in to comment.