2020-01-29 21:37:25 +02:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { User } from './user.js';
|
|
|
|
import { id } from '../id.js';
|
2020-01-29 21:37:25 +02:00
|
|
|
|
|
|
|
@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.',
|
2020-01-29 21:37:25 +02:00
|
|
|
})
|
|
|
|
public createdAt: Date;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: 'The owner ID.',
|
2020-01-29 21:37:25 +02:00
|
|
|
})
|
|
|
|
public userId: User['id'];
|
|
|
|
|
|
|
|
@ManyToOne(type => User, {
|
2021-12-09 16:58:30 +02:00
|
|
|
onDelete: 'CASCADE',
|
2020-01-29 21:37:25 +02:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public user: User | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: 'The name of the Clip.',
|
2020-01-29 21:37:25 +02:00
|
|
|
})
|
|
|
|
public name: string;
|
|
|
|
|
|
|
|
@Column('boolean', {
|
2021-12-09 16:58:30 +02:00
|
|
|
default: false,
|
2020-01-29 21:37:25 +02:00
|
|
|
})
|
|
|
|
public isPublic: boolean;
|
2020-11-15 05:04:54 +02:00
|
|
|
|
|
|
|
@Column('varchar', {
|
2022-05-05 16:45:22 +03:00
|
|
|
length: 2048, nullable: true,
|
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;
|
2020-01-29 21:37:25 +02:00
|
|
|
}
|