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