mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
feat: add decoration column to discord notification
This commit is contained in:
1
apps/dokploy/drizzle/0052_bumpy_luckman.sql
Normal file
1
apps/dokploy/drizzle/0052_bumpy_luckman.sql
Normal file
@@ -0,0 +1 @@
|
|||||||
|
ALTER TABLE "discord" ADD COLUMN "decoration" boolean;
|
||||||
4246
apps/dokploy/drizzle/meta/0052_snapshot.json
Normal file
4246
apps/dokploy/drizzle/meta/0052_snapshot.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -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
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -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", {
|
||||||
|
|||||||
Reference in New Issue
Block a user