forked from swapnil.bendal/TypeScript-Backend-Template
15 lines
217 B
TypeScript
15 lines
217 B
TypeScript
import { Column, Entity, PrimaryGeneratedColumn } from "typeorm";
|
|
|
|
@Entity()
|
|
export class Player {
|
|
|
|
@PrimaryGeneratedColumn()
|
|
id!: number;
|
|
|
|
@Column()
|
|
type!: string;
|
|
|
|
@Column()
|
|
name!: string;
|
|
|
|
} |