Skip to content

Commit

Permalink
feat: address in contact info is not longer needed
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseAlbDR committed Feb 26, 2024
1 parent e937da5 commit 2ec85f9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ model Admin {
model ContactInfo {
id String @id
phoneNumber String
address String
cityId Int
city City @relation(fields: [cityId], references: [id])
user User @relation(fields: [id], references: [id], onDelete: Cascade)
Expand Down
1 change: 0 additions & 1 deletion src/test/presentation/animals/routes.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { TestUser, cleanDB } from '../auth/routes.test';
import request from 'supertest';
import { CreateAnimalDto } from '../../../domain';
import { gender } from '../../../domain/interfaces';
import { S3Service } from '../../../presentation/services';

jest.mock('../../../presentation/services/s3.service.ts');

Expand Down

0 comments on commit 2ec85f9

Please sign in to comment.