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
commit c8fab8e8ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 1 additions and 1 deletions

Binary file not shown.

Binary file not shown.

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 })