summaryrefslogtreecommitdiff
path: root/TODO
blob: bae6ad96969dcb3241929e612d062a1fc1f4125e (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
44
- improve guides
- publish barefoot shoe piece, as guide maybe?


## 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 media_luximagesize ALTER COLUMN id SET DEFAULT nextval('media_luximagesize_id_seq'::regclass);
SELECT setval('media_luximagesize_id_seq', (SELECT MAX(id) FROM media_luximagesize)+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;