mirror of
https://github.com/sussy-code/backend.git
synced 2026-04-21 00:42:02 +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' })
|
@Entity({ tableName: 'user_settings' })
|
||||||
export class UserSettings {
|
export class UserSettings {
|
||||||
|
|
@ -14,7 +14,7 @@ export class UserSettings {
|
||||||
@Property({ name: 'default_subtitle_language', nullable: true })
|
@Property({ name: 'default_subtitle_language', nullable: true })
|
||||||
defaultSubtitleLanguage?: string | null;
|
defaultSubtitleLanguage?: string | null;
|
||||||
|
|
||||||
@Property({ name: 'proxy_urls', nullable: true, type: 'text[]' })
|
@Property({ name: 'proxy_urls', type: ArrayType, nullable: true })
|
||||||
proxyUrls?: string[] | null;
|
proxyUrls?: string[] | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue