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

56 lines
1.1 KiB
TypeScript
Raw Normal View History

/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
import { id } from '../id.js';
import { MiUser } from './User.js';
@Entity('clip')
export class MiClip {
@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;
2023-03-16 10:24:49 +02:00
@Index()
@Column('timestamp with time zone', {
nullable: true,
})
public lastClippedAt: Date | null;
@Index()
@Column({
...id(),
2021-12-09 16:58:30 +02:00
comment: 'The owner ID.',
})
public userId: MiUser['id'];
@ManyToOne(type => MiUser, {
2021-12-09 16:58:30 +02:00
onDelete: 'CASCADE',
})
@JoinColumn()
public user: MiUser | 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,
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;
}