INSERT INTO property (
id,
title,
description,
agent_id,
state,
time_created,
last_updated
) VALUES (
$1,
$2,
$3,
$4,
$5,
$6,
$6
) RETURNING
state as "state: _",
last_updated;