mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
10 lines
193 B
TypeScript
10 lines
193 B
TypeScript
import { Column, Entity, PrimaryGeneratedColumn } from "typeorm";
|
|
|
|
@Entity()
|
|
export class Genre {
|
|
@PrimaryGeneratedColumn("uuid")
|
|
id: string;
|
|
|
|
@Column({ unique: true })
|
|
name: string;
|
|
}
|