feat(create-turbo): create https://github.com/juliusmarminge/acme-corp
This commit is contained in:
12
packages/db/prisma/enums.ts
Normal file
12
packages/db/prisma/enums.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
export const ProjectTier = {
|
||||
FREE: "FREE",
|
||||
PRO: "PRO",
|
||||
} as const;
|
||||
export type ProjectTier = (typeof ProjectTier)[keyof typeof ProjectTier];
|
||||
export const SubscriptionPlan = {
|
||||
FREE: "FREE",
|
||||
STANDARD: "STANDARD",
|
||||
PRO: "PRO",
|
||||
} as const;
|
||||
export type SubscriptionPlan =
|
||||
(typeof SubscriptionPlan)[keyof typeof SubscriptionPlan];
|
||||
Reference in New Issue
Block a user