2023-05-08 17:22:36 +00:00
|
|
|
INSERT INTO property_arrangement (
|
|
|
|
property_id,
|
2023-05-08 18:28:19 +00:00
|
|
|
price,
|
2023-05-08 17:22:36 +00:00
|
|
|
currency,
|
|
|
|
arrangement,
|
|
|
|
time_created,
|
|
|
|
last_updated
|
|
|
|
) VALUES (
|
|
|
|
$1, $2, $3, $4, $5, $5
|
|
|
|
) RETURNING
|
|
|
|
property_id,
|
2023-05-08 18:28:19 +00:00
|
|
|
price,
|
2023-05-08 17:22:36 +00:00
|
|
|
currency,
|
|
|
|
arrangement as "arrangement: _",
|
|
|
|
time_created,
|
|
|
|
last_updated;
|