Skip to content

Commit

Permalink
fix: db sql issue for ROLE_AUTHOR.SQL (#597)
Browse files Browse the repository at this point in the history
  • Loading branch information
chivehao committed Jun 29, 2024
1 parent 6592340 commit 104e1a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions server/src/main/resources/application-postgresql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ spring:

flyway:
locations: classpath:db/postgresql/migration
url: jdbc:postgresql://localhost:5432/postgres
user: postgres
password: openpostgresql
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ create sequence if not exists role_authority_seq
cache 1
no cycle;

create table if not exists ikuser_role
create table if not exists role_authority
(
id int8 not null default nextval('role_authority_seq'),
role_id int8 not null,
Expand Down

0 comments on commit 104e1a4

Please sign in to comment.