fix: prettier)

This commit is contained in:
2024-07-03 23:49:05 +03:00
parent a865789efa
commit 5e570a4f60
47 changed files with 5152 additions and 2835 deletions

View File

@@ -1,17 +1,17 @@
import { Column, Entity, PrimaryColumn } from 'typeorm';
import { Column, Entity, PrimaryColumn } from "typeorm";
@Entity()
export class User {
constructor(props?: Partial<User>) {
Object.assign(this, props);
}
constructor(props?: Partial<User>) {
Object.assign(this, props);
}
@PrimaryColumn()
public id!: string;
@PrimaryColumn()
public id!: string;
@Column({ nullable: true })
public user_name: string;
@Column({ nullable: true })
public user_name: string;
@Column({ nullable: false , default: false})
public banned: boolean;
@Column({ nullable: false, default: false })
public banned: boolean;
}