summaryrefslogtreecommitdiff
path: root/TODO
blob: 525e762cb546ea0c01333c3eb4b5ab647df01e17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
- 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

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

## Notes:

Fix out of sequence postgres tables:

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