Skip to content

Commit

Permalink
충돌 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
codeing999 committed Jul 10, 2023
1 parent a2c1b51 commit adffb0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/module/counseling/data/counseling.entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
import { UserEntity } from '../../user/data/user.entity';
import { CounselingStatus } from '../domain/counseling.model';
import { PetEntity } from '../../pet/data/pet.entity';
import { DoctorEntity } from './../../doctor/doctor.entity';
import { DoctorEntity } from '../../doctor/data/doctor.entity';

@Entity({
name: 'Counseling',
Expand Down
2 changes: 1 addition & 1 deletion src/module/doctor/data/doctor.entity.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Column, Entity, PrimaryGeneratedColumn, OneToMany } from 'typeorm';
import { Factory } from 'nestjs-seeder';
import { CounselingEntity } from '../counseling/data/counseling.entity';
import { CounselingEntity } from '../../counseling/data/counseling.entity';

@Entity({
name: 'Doctor',
Expand Down

0 comments on commit adffb0f

Please sign in to comment.