mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-02-15 04:32:13 +00:00
37 lines
555 B
TypeScript
37 lines
555 B
TypeScript
import {
|
|
Entity,
|
|
PrimaryGeneratedColumn,
|
|
Column,
|
|
CreateDateColumn,
|
|
UpdateDateColumn,
|
|
} from "typeorm";
|
|
|
|
@Entity("repack")
|
|
export class Repack {
|
|
@PrimaryGeneratedColumn()
|
|
id: number;
|
|
|
|
@Column("text", { unique: true })
|
|
title: string;
|
|
|
|
@Column("text", { unique: true })
|
|
magnet: string;
|
|
|
|
@Column("int")
|
|
page: number;
|
|
|
|
@Column("text")
|
|
repacker: string;
|
|
|
|
@Column("text")
|
|
fileSize: string;
|
|
|
|
@Column("datetime")
|
|
uploadDate: Date | string;
|
|
|
|
@CreateDateColumn()
|
|
createdAt: Date;
|
|
|
|
@UpdateDateColumn()
|
|
updatedAt: Date;
|
|
}
|