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

45 lines
850 B
TypeScript
Raw Normal View History

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