mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Merge pull request #2277 from omnivore-app/fix/admin-source-column-name
Specify source user id column name
This commit is contained in:
commit
cb02a8639b
1 changed files with 2 additions and 2 deletions
|
|
@ -100,8 +100,8 @@ export class User extends BaseEntity {
|
|||
@OneToMany(() => UserArticle, (ua) => ua.user)
|
||||
articles!: UserArticle[]
|
||||
|
||||
@Column('text')
|
||||
sourceUserId!: string
|
||||
@Column({ type: 'text' })
|
||||
source_user_id!: string
|
||||
|
||||
@Column({ type: 'enum', enum: AuthProvider })
|
||||
source!: AuthProvider
|
||||
|
|
|
|||
Loading…
Reference in a new issue