2023-03-09 17:45:16 +00:00
|
|
|
INSERT INTO property_details (
|
|
|
|
property_id,
|
|
|
|
meters,
|
|
|
|
listing_type,
|
|
|
|
photo_urls,
|
2023-03-09 21:37:16 +00:00
|
|
|
location_id
|
2023-03-09 17:45:16 +00:00
|
|
|
) VALUES (
|
|
|
|
$1,
|
|
|
|
$2,
|
|
|
|
$3,
|
|
|
|
$4,
|
|
|
|
$5
|
|
|
|
) RETURNING
|
|
|
|
property_id,
|
|
|
|
meters,
|
|
|
|
listing_type as "listing_type: _",
|
|
|
|
photo_urls as "photo_urls: _",
|
2023-03-09 21:37:16 +00:00
|
|
|
location_id;
|