-
Notifications
You must be signed in to change notification settings - Fork 166
/
data.sql
41 lines (41 loc) · 2.71 KB
/
data.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
INSERT INTO post (title, lead, body, author, date) VALUES
('Earbuds',
'You have got to try these in your ears. So tiny and can even block the sounds of screaming toddlers if you so desire.',
'You have got to try these in your ears. So tiny and can even block the sounds of screaming toddlers if you so desire.',
'Sarah Holderness',
to_date('01-01-18', 'DD-MM-RR')),
('Smart Speakers',
'Smart speakers listen to you all right. Sometimes they get a little snippy but will still order your favorite takeout.',
'Smart speakers listen to you all right. Sometimes they get a little snippy but will still order your favorite takeout.',
'Sarah Holderness',
to_date('01-01-18', 'DD-MM-RR')),
('Device Charger',
'We all do a little too much scrolling in lieu of human interaction. This charger will keep you isolated.',
'We all do a little too much scrolling in lieu of human interaction. This charger will keep you isolated.',
'Sarah Holderness',
to_date('01-01-18', 'DD-MM-RR')),
('Smart Home Lock',
'Want to play tricks on your teenager? This smart home lock will lock them out when they act like they run the house.',
'Want to play tricks on your teenager? This smart home lock will lock them out when they act like they run the house.',
'Sarah Holderness',
to_date('01-01-18', 'DD-MM-RR')),
('Smart Instant Pot',
'This Instant Pot can do your shopping for you. When it gets home it will also put your meal together.',
'This Instant Pot can do your shopping for you. When it gets home it will also put your meal together.',
'Sarah Holderness',
to_date('01-01-18', 'DD-MM-RR')),
('Mobile Tripod',
'Best gift for that older adult in your life who cannot keep their face in the FaceTime window.',
'Best gift for that older adult in your life who cannot keep their face in the FaceTime window.',
'Sarah Holderness',
to_date('01-01-18', 'DD-MM-RR')),
('Travel Keyboard',
'You never know when inspiration for your latest novel will strike. Meet the perfect travel keyboard for your random thoughts.',
'You never know when inspiration for your latest novel will strike. Meet the perfect travel keyboard for your random thoughts.',
'Sarah Holderness',
to_date('01-01-18', 'DD-MM-RR')),
('SD Card Reader',
'When a stranger passes us a top secret SD card the adventure begins. Jason Bourne says, "Hi".',
'When a stranger passes us a top secret SD card the adventure begins. Jason Bourne says, "Hi".',
'Sarah Holderness',
to_date('01-01-18', 'DD-MM-RR'));