mirror of
https://github.com/sussy-code/backend.git
synced 2026-01-11 20:10:18 +00:00
Swap to using ArrayType
This commit is contained in:
parent
1010eaf71e
commit
b2e0841d0b
1 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import { Entity, PrimaryKey, Property } from '@mikro-orm/core';
|
||||
import { ArrayType, Entity, PrimaryKey, Property } from '@mikro-orm/core';
|
||||
|
||||
@Entity({ tableName: 'user_settings' })
|
||||
export class UserSettings {
|
||||
|
|
@ -14,7 +14,7 @@ export class UserSettings {
|
|||
@Property({ name: 'default_subtitle_language', nullable: true })
|
||||
defaultSubtitleLanguage?: string | null;
|
||||
|
||||
@Property({ name: 'proxy_urls', nullable: true, type: 'text[]' })
|
||||
@Property({ name: 'proxy_urls', type: ArrayType, nullable: true })
|
||||
proxyUrls?: string[] | null;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue