Merge pull request #1372 from MathMan05/fixes

fix SQLite
This commit is contained in:
Cyber
2025-10-31 14:12:21 +01:00
committed by GitHub
3 changed files with 1 additions and 1 deletions
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -53,7 +53,7 @@ export class ApplicationCommand extends BaseClass {
@Column({ nullable: true, type: "simple-json" })
description_localizations?: Record<string, string>;
@Column({ type: "simple-json", default: [] })
@Column({ type: "simple-json", default: "[]" })
options: ApplicationCommandOption[];
@Column({ nullable: true, type: String })