fix (backend): select all columns in select queries by default (close #10988)
This commit is contained in:
parent
25fb8c816c
commit
6b754f09e7
3 changed files with 0 additions and 3 deletions
|
@ -138,7 +138,6 @@ export class Note {
|
|||
|
||||
@Column("integer", {
|
||||
default: 0,
|
||||
select: false,
|
||||
})
|
||||
public score: number;
|
||||
|
||||
|
|
|
@ -195,7 +195,6 @@ export class UserProfile {
|
|||
@Index()
|
||||
@Column("boolean", {
|
||||
default: false,
|
||||
select: false,
|
||||
})
|
||||
public enableWordMute: boolean;
|
||||
|
||||
|
|
|
@ -56,7 +56,6 @@ export class User {
|
|||
@Index()
|
||||
@Column("varchar", {
|
||||
length: 128,
|
||||
select: false,
|
||||
comment: "The username (lowercased) of the User.",
|
||||
})
|
||||
public usernameLower: string;
|
||||
|
|
Loading…
Reference in a new issue