2015-04-30 10:23:41 -06:00
|
|
|
INSERT INTO client (host, description, created_at)
|
|
|
|
VALUES('hallpclnx',
|
|
|
|
'My linux machine',
|
|
|
|
CURRENT_TIMESTAMP);
|
|
|
|
|
|
|
|
|
|
|
|
INSERT INTO thread (thread, description, created_at, client_id)
|
|
|
|
VALUES(1,
|
|
|
|
'Living room camera',
|
|
|
|
CURRENT_TIMESTAMP,
|
|
|
|
1);
|
|
|
|
|
|
|
|
|
|
|
|
INSERT INTO thread (thread, description, created_at, client_id)
|
|
|
|
VALUES(2,
|
|
|
|
'Porch camera',
|
|
|
|
CURRENT_TIMESTAMP,
|
|
|
|
1);
|
|
|
|
|
|
|
|
|
|
|
|
INSERT INTO thread (thread, description, created_at, client_id)
|
|
|
|
VALUES(2,
|
|
|
|
'Garden camera',
|
|
|
|
CURRENT_TIMESTAMP,
|
|
|
|
1);
|
|
|
|
|
|
|
|
|
|
|
|
INSERT INTO client (host, description, created_at)
|
|
|
|
VALUES('shedpclnx',
|
|
|
|
'My shed linux machine',
|
|
|
|
CURRENT_TIMESTAMP);
|
|
|
|
|