This commit is contained in:
Madeline 2022-09-09 23:25:59 +10:00
parent 6b0eb46a37
commit 97b19fd081
2 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@ export class Message extends BaseClass {
@ManyToOne(() => Application) @ManyToOne(() => Application)
application?: Application; application?: Application;
@Column({ nullable: true, type: "longtext" }) @Column({ nullable: true })
content?: string; content?: string;
@Column() @Column()

View File

@ -37,7 +37,7 @@ export interface Activity {
id?: string; id?: string;
sync_id?: string; sync_id?: string;
metadata?: { // spotify metadata?: { // spotify
context_url?: string; context_uri?: string;
album_id: string; album_id: string;
artist_ids: string[]; artist_ids: string[];
}; };