fix (backend): select all columns in select queries by default (close #10988)

This commit is contained in:
naskya 2024-08-02 06:54:47 +09:00
parent 25fb8c816c
commit 6b754f09e7
No known key found for this signature in database
GPG key ID: 712D413B3A9FED5C
3 changed files with 0 additions and 3 deletions

View file

@ -138,7 +138,6 @@ export class Note {
@Column("integer", {
default: 0,
select: false,
})
public score: number;

View file

@ -195,7 +195,6 @@ export class UserProfile {
@Index()
@Column("boolean", {
default: false,
select: false,
})
public enableWordMute: boolean;

View file

@ -56,7 +56,6 @@ export class User {
@Index()
@Column("varchar", {
length: 128,
select: false,
comment: "The username (lowercased) of the User.",
})
public usernameLower: string;