Commit b7d88d4c authored by Lorenzo Trujillo Rojas's avatar Lorenzo Trujillo Rojas
Browse files

Merge branch 'main' into 'main'

Aumentando precision de las coordenadas en la bd

See merge request !56
parents bc358112 1f58305f
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 })