Skip to content
This repository has been archived by the owner on Apr 24, 2023. It is now read-only.

Commit

Permalink
add surveys, quotes, projects, leads, tasks, meetings, contracts, cas…
Browse files Browse the repository at this point in the history
…es, interactive calendar, and removed Braintree Virtual Terminal feature for now. Cleaned up files and code, added graphql, updated database through prisma
  • Loading branch information
bastianhilton committed May 19, 2022
1 parent 0707958 commit 9548606
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions client/prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -390,15 +390,13 @@ model products {

model quotes {
id Int @id @default(autoincrement())
name String @db.VarChar(255)
excerpt String? @db.VarChar(255)
image String?
published DateTime? @db.Timestamp(6)
name String
grand_total String?
created_at DateTime? @default(now()) @db.Timestamp(6)
categories String?
articles String?
products String?
valid_until String?
quote_stage String?
customers String?
users String?
cust_id Int @default(autoincrement())
prod_id BigInt @default(autoincrement())
order_id Int @default(autoincrement())
Expand Down

0 comments on commit 9548606

Please sign in to comment.