implemented stripe for the cloud instance

This commit is contained in:
Daniel
2023-07-15 22:15:43 -04:00
parent 0b66e16123
commit f82582a0bd
29 changed files with 474 additions and 88 deletions
+2 -4
View File
@@ -35,12 +35,12 @@ model Session {
}
model User {
id Int @id @default(autoincrement())
id Int @id @default(autoincrement())
name String
username String @unique
email String? @unique
email String? @unique
emailVerified DateTime?
image String?
@@ -60,7 +60,6 @@ model User {
createdAt DateTime @default(now())
}
model VerificationToken {
identifier String
token String @unique
@@ -69,7 +68,6 @@ model VerificationToken {
@@unique([identifier, token])
}
model Collection {
id Int @id @default(autoincrement())
name String