sort of works with store
[catagits/App-IdiotBox.git] / share / sql / example-data-1.0.sql
CommitLineData
0ab4fd2e 1INSERT INTO buckets (slug, name) VALUES (
2 'lpw2009', 'London Perl Workshop 2009'
3);
4INSERT INTO buckets (slug, name) VALUES (
5 'opw2010', 'Perl Oasis 2010'
6);
7
8INSERT INTO announcements (id, made_at, bucket_slug) VALUES (
9 1, '2009-12-25 09:00:00', 'lpw2009'
10);
11INSERT INTO announcements (id, made_at, bucket_slug) VALUES (
d9702c6d 12 2, '2010-01-01 14:00:00', 'lpw2009'
0ab4fd2e 13);
14INSERT INTO announcements (id, made_at, bucket_slug) VALUES (
15 3, '2010-01-21 01:00:00', 'opw2010'
16);
17
18INSERT INTO videos (
19 slug, bucket_slug, name, author,announcement_id
20) VALUES (
21 'BEGIN', 'lpw2009', 'BEGINning Perl', 'Matt S Trout (mst)', 1
22);
23INSERT INTO videos (
24 slug, bucket_slug, name, author,announcement_id
25) VALUES (
26 'dream', 'lpw2009', 'Dreamcasting', 'Matt S Trout (mst)', 2
27);
28INSERT INTO videos (
29 slug, bucket_slug, name, author,announcement_id
30) VALUES (
31 'troll-god-mountain', 'opw2010', 'The Troll, the God and the Mountain',
32 'Matt S Trout (mst)', 3
33);
34INSERT INTO videos (
35 slug, bucket_slug, name, author,announcement_id
36) VALUES (
d9702c6d 37 'keynote', 'opw2010', 'The Most Disgusting Word You''ll Hear',
38 'Mark Keating (mdk)', 3
0ab4fd2e 39);