summaryrefslogtreecommitdiff
path: root/TODO
blob: 6b7b53e91564fd01c65ca0437d28b39418b77f94 (plain)
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
42
43
- improve guides


## Members

Monthly $8/Yearly $100/lifetime $900
free digital book that year, along with supplemental stories
access to members-only mailing list
live stream Q&As
free audio books

Monthly $14/Yearly $120/lifetime $1400
real-time access
chances to hang out when I am near your town

## Lulu and birdie:

blog about good kids books
blog about pirate research
blog about activities for kids
podcast on famous pirates
what it's like to sail in a wood ship
why pirates

 - Members:
     free ebooks
     extra members only lulu and birdie stories and outtakes
     t-shirts
     artwork



## Notes:

Fix out of sequence postgres tables:

ALTER TABLE lttr_mailingstatus ALTER COLUMN id SET DEFAULT nextval('lttr_mailingstatus_id_seq'::regclass);
SELECT setval('lttr_mailingstatus_id_seq', (SELECT MAX(id) FROM lttr_mailingstatus)+1);

ALTER TABLE media_luximage ALTER COLUMN id SET DEFAULT nextval('media_luximage_id_seq'::regclass);
SELECT setval('media_luximage_id_seq', (SELECT MAX(id) FROM media_luximage)+1);

ALTER TABLE posts_post DROP CONSTRAINT posts_post_featured_image_id_93b44ab4_fk_photos_luximage_id;