Skip to content

Commit

Permalink
Fix unit test error
Browse files Browse the repository at this point in the history
  • Loading branch information
babyfish-ct committed Dec 21, 2024
1 parent 1e978d4 commit 6742ad6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions project/jimmer-sql/src/test/resources/database.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1402,6 +1402,10 @@ create table person(
alter table person
add constraint pk_person
primary key(id);
alter table person
add constraint fk_person__friend
foreign key(friend_id)
references person(id);

insert into person(id, name, friend_id) values
(1, 'Alex', null),
Expand Down

0 comments on commit 6742ad6

Please sign in to comment.