feat: add decoration column to discord notification

This commit is contained in:
João Gabriel
2024-12-22 00:39:18 -03:00
parent 73782ffd26
commit 8c06296503
4 changed files with 4255 additions and 0 deletions

View File

@@ -0,0 +1 @@
ALTER TABLE "discord" ADD COLUMN "decoration" boolean;

File diff suppressed because it is too large Load Diff

View File

@@ -365,6 +365,13 @@
"when": 1734241482851, "when": 1734241482851,
"tag": "0051_hard_gorgon", "tag": "0051_hard_gorgon",
"breakpoints": true "breakpoints": true
},
{
"idx": 52,
"version": "6",
"when": 1734809337308,
"tag": "0052_bumpy_luckman",
"breakpoints": true
} }
] ]
} }

View File

@@ -68,6 +68,7 @@ export const discord = pgTable("discord", {
.primaryKey() .primaryKey()
.$defaultFn(() => nanoid()), .$defaultFn(() => nanoid()),
webhookUrl: text("webhookUrl").notNull(), webhookUrl: text("webhookUrl").notNull(),
decoration: boolean("decoration"),
}); });
export const email = pgTable("email", { export const email = pgTable("email", {