Subscriptions model #11
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
tracks user/product subscriptions -- links user_id to product_id for start_date to renew_date, has a state one of
TRIAL - can be paid or try for free for limited period, which will convert to START automatically if not CANCELED
START - checkout paid for an extended period, which will convert to RENEWAL automatically if not CANCELED
RENEWAL - automatically billed if not CANCELED
it has another field with enum
COMPLETED
CANCELED
It also has an invoice date (aka start date) and a renews_at date.
Subscriptions model [draft]to Subscriptions model