데이터베이스에 좌표 데이터 넣기?데이터베이스에 좌표 데이터를 넣을 때는 우리가 흔히 사용하는 숫자형을 사용하지 않는다고 함Point라는 처음 들어보는 형태를 사용한다고 함 @Index({ spatial: true }) @Column({ type: 'geography', spatialFeatureType: 'Point', srid: 4326, nullable: true, }) location:Point근데 이게 뭐임... UPDATE customers SET location = 'point(37.7, 122.4)' where id = 123;일단 포인트에 위도 경도 값이 한꺼번에 들어간다는 건 알겠는데 그래서 이걸 어떻게 넣어야하는건지 막막함