2021-04-24 16:38:24 +03:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { id } from '../id.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { User } from './User.js';
|
|
|
|
import { GalleryPost } from './GalleryPost.js';
|
2021-04-24 16:38:24 +03:00
|
|
|
|
|
|
|
@Entity()
|
|
|
|
@Index(['userId', 'postId'], { unique: true })
|
|
|
|
export class GalleryLike {
|
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Column('timestamp with time zone')
|
|
|
|
public createdAt: Date;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column(id())
|
|
|
|
public userId: User['id'];
|
|
|
|
|
|
|
|
@ManyToOne(type => User, {
|
2021-12-09 16:58:30 +02:00
|
|
|
onDelete: 'CASCADE',
|
2021-04-24 16:38:24 +03:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public user: User | null;
|
|
|
|
|
|
|
|
@Column(id())
|
|
|
|
public postId: GalleryPost['id'];
|
|
|
|
|
|
|
|
@ManyToOne(type => GalleryPost, {
|
2021-12-09 16:58:30 +02:00
|
|
|
onDelete: 'CASCADE',
|
2021-04-24 16:38:24 +03:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public post: GalleryPost | null;
|
|
|
|
}
|