-
Notifications
You must be signed in to change notification settings - Fork 771
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
1,283 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
CREATE TABLE `subscriptions` ( | ||
`id` varchar(128) NOT NULL, | ||
`user_id` varchar(191) NOT NULL, | ||
`stripe_subscription_id` varchar(191), | ||
`stripe_price_id` varchar(191), | ||
`stripe_customer_id` varchar(191), | ||
`stripe_current_period_end` timestamp, | ||
`created_at` timestamp NOT NULL DEFAULT (now()), | ||
`updated_at` timestamp ON UPDATE CURRENT_TIMESTAMP, | ||
CONSTRAINT `subscriptions_id` PRIMARY KEY(`id`), | ||
CONSTRAINT `subscriptions_user_id_unique` UNIQUE(`user_id`) | ||
); |
Oops, something went wrong.
d1267e2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
skateshop – ./
skateshop-sadmann7.vercel.app
skateshop13.vercel.app
skateshop-git-main-sadmann7.vercel.app
skateshop.sadmn.com