Skip to content

Commit efea3c2

Browse files
Change column in MusicProviders to be JSON
1 parent 80f9a5b commit efea3c2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/entity/MusicProviders.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ export class MusicProviders extends BaseEntity {
4040
@Column()
4141
refreshToken: string;
4242

43-
@Column()
44-
additional: string;
43+
@Column({ type: 'json' })
44+
additional: any;
4545

4646
@Column({ type: 'timestamp', default: () => 'CURRENT_TIMESTAMP'})
4747
createdAt: string;

0 commit comments

Comments
 (0)