Commit 044d9ea7 authored by Diego Iván's avatar Diego Iván
Browse files

eliminando import

parent cc77682b
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
import { Town } from 'src/town/entities/town.entity';
import { Entity, Column, PrimaryColumn, OneToMany, JoinColumn } from 'typeorm';
import { Entity, Column, PrimaryColumn, OneToMany } from 'typeorm';

@Entity()
export class State {
@@ -7,7 +7,6 @@ export class State {
  stateId: number;

  @OneToMany(() => Town, (town) => town.townId)
  @JoinColumn()
  towns: Town[];

  @Column()