Refactor triggerType implementation: remove old SQL triggerType column definitions and replace with ENUM type in application and compose tables. Update shared schema to include triggerType enum.

This commit is contained in:
Mauricio Siu
2025-04-26 21:14:30 -06:00
parent 120646c77b
commit 91bcd1238f
7 changed files with 5423 additions and 9 deletions

View File

@@ -12,3 +12,5 @@ export const certificateType = pgEnum("certificateType", [
"none",
"custom",
]);
export const triggerType = pgEnum("triggerType", ["push", "tag"]);