Skip to main content
Makenot
.
work
Discover
Use Cases
Docs
Fan+
Login
Join
max
/
makenotwork
lane-a-pipeline
main
tag: launch-2026-06-01
Files
Commits
Issues
makenotwork
/
server
/
migrations
/
091_notify_status.sql
212 B · 4 lines
History
Blame
Raw
1
--
Add opt-in status alert preference for creators.
2
--
Default false: creators must explicitly opt in to receive platform status emails.
3
ALTER
TABLE
users ADD COLUMN notify_status
BOOLEAN
NOT NULL
DEFAULT
false
;
4