mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
14 lines
243 B
TypeScript
14 lines
243 B
TypeScript
import { pgEnum } from "drizzle-orm/pg-core";
|
|
|
|
export const applicationStatus = pgEnum("applicationStatus", [
|
|
"idle",
|
|
"running",
|
|
"done",
|
|
"error",
|
|
]);
|
|
|
|
export const certificateType = pgEnum("certificateType", [
|
|
"letsencrypt",
|
|
"none",
|
|
]);
|