Skip to content

Commit 86f7fd9

Browse files
committed
fix(typeorm): revert uneeded change to test entity
1 parent 6af8af1 commit 86f7fd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/query-typeorm/__tests__/__fixtures__/test.entity.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class TestEntity {
3030
@JoinTable()
3131
manyToManyUniDirectional?: TestRelation[];
3232

33-
@OneToOne(() => TestRelation, (relation) => relation.oneTestEntity, { nullable: true })
33+
@OneToOne(() => TestRelation, (relation) => relation.oneTestEntity)
3434
@JoinColumn()
3535
oneTestRelation?: TestRelation;
3636

0 commit comments

Comments
 (0)