Commit 6c24df0f authored by Diego Iván's avatar Diego Iván
Browse files

haciendo numeros de coordenadas mas grande en la bd

parent 837dd813
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -46,10 +46,10 @@ export class Place {
  @Column()
  imageName: string;

  @Column({ nullable: false, type: 'decimal', precision: 10, scale: 8 })
  @Column({ nullable: false, type: 'decimal', precision: 20, scale: 4 })
  latitude;

  @Column({ nullable: false, type: 'decimal', precision: 10, scale: 8 })
  @Column({ nullable: false, type: 'decimal', precision: 20, scale: 4 })
  longitude;

  @Column({ nullable: false })