firefish/packages/backend/src/models/entities/clip.ts

52 lines
848 B
TypeScript
Raw Normal View History

2023-01-13 05:40:33 +01:00
import {
PrimaryColumn,
Entity,
Index,
JoinColumn,
Column,
ManyToOne,
} from "typeorm";
import { User } from "./user.js";
import { id } from "../id.js";
@Entity()
export class Clip {
@PrimaryColumn(id())
public id: string;
@Column('timestamp with time zone', {
2021-12-09 15:58:30 +01:00
comment: 'The created date of the Clip.',
})
public createdAt: Date;
@Index()
@Column({
...id(),
2021-12-09 15:58:30 +01:00
comment: 'The owner ID.',
})
2023-01-13 05:40:33 +01:00
public userId: User["id"];
@ManyToOne(type => User, {
2021-12-09 15:58:30 +01:00
onDelete: 'CASCADE',
})
@JoinColumn()
public user: User | null;
@Column('varchar', {
length: 128,
2021-12-09 15:58:30 +01:00
comment: 'The name of the Clip.',
})
public name: string;
@Column('boolean', {
2021-12-09 15:58:30 +01:00
default: false,
})
public isPublic: boolean;
2020-11-15 04:04:54 +01:00
@Column('varchar', {
length: 2048, nullable: true,
2021-12-09 15:58:30 +01:00
comment: 'The description of the Clip.',
2020-11-15 04:04:54 +01:00
})
public description: string | null;
}