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
/
097_cart_pwyw_amount.sql
189 B · 4 lines
History
Blame
Raw
1
--
Allow buyers to store a custom PWYW amount per cart item.
2
--
NULL means "use item minimum price" (backward compatible).
3
ALTER
TABLE
cart_items ADD COLUMN IF NOT EXISTS amount_cents
INT
;
4