Skip to main content
Makenot
.
work
Discover
Use Cases
Docs
Fan+
Login
Join
max
/
makenotwork
main
tag: launch-2026-06-01
tag: magicmirror-v0.1.1
tag: magicmirror-v0.3.0
tag: mnw-cli-v0.1.2
tag: mnw-cli-v0.1.3
tag: mnw-cli-v0.1.4
tag: pom-v0.4.1
tag: pom-v0.4.2
tag: pom-v0.4.3
tag: pom-v0.4.4
tag: pom-v0.4.5
tag: wam-v0.3.0
tag: wam-v0.3.1
Files
Commits
Tags
Notes
Issues
makenotwork
/
server
/
migrations
/
022_onboarding_emails.sql
291 B · 6 lines
History
Blame
Raw
1
--
Onboarding email drip sequence tracking.
2
--
step 0 = no emails sent, 1 = welcome sent, 2 = profile tips sent, 3 = stripe guide sent (done).
3
4
ALTER
TABLE
users ADD COLUMN onboarding_email_step
SMALLINT
NOT NULL
DEFAULT
0
;
5
ALTER
TABLE
users ADD COLUMN onboarding_email_sent_at
TIMESTAMP
TZ
;
6