5 lines
164 B
MySQL
5 lines
164 B
MySQL
|
INSERT INTO trackable (
|
||
|
id, who_was, ip_address, browser_width, browser_height, user_agent, time_created
|
||
|
) VALUES(
|
||
|
$1, $2, $3, $4, $5, $6, $7
|
||
|
) RETURNING *;
|