Loading backend/src/place/entities/place-traduction.entity.ts +2 −2 Original line number Diff line number Diff line Loading @@ -7,9 +7,9 @@ export class PlaceTraduction { @PrimaryColumn() language: LANGUAGES = LANGUAGES.ES; @PrimaryColumn({ name: 'idPlace' }) @PrimaryColumn({ name: 'idPlace', type: Number }) @ManyToOne(() => Place, (place) => place.availableDates, { nullable: false }) idPlace: number; idPlace: Place; @Column() description: string; Loading Loading
backend/src/place/entities/place-traduction.entity.ts +2 −2 Original line number Diff line number Diff line Loading @@ -7,9 +7,9 @@ export class PlaceTraduction { @PrimaryColumn() language: LANGUAGES = LANGUAGES.ES; @PrimaryColumn({ name: 'idPlace' }) @PrimaryColumn({ name: 'idPlace', type: Number }) @ManyToOne(() => Place, (place) => place.availableDates, { nullable: false }) idPlace: number; idPlace: Place; @Column() description: string; Loading