5 lines
226 B
SQL
5 lines
226 B
SQL
INSERT INTO realtor (
|
|
id, name, bio, phone_number, email, profile_picture_url, show_projects, shortcode, remax_agent_id, time_created, last_updated
|
|
) VALUES (
|
|
$1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $10
|
|
) RETURNING *; |