2019-05-17 10:56:47 +00:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
2022-02-27 02:07:39 +00:00
|
|
|
import { id } from '../id.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { User } from './User.js';
|
|
|
|
import { Page } from './Page.js';
|
2019-05-17 10:56:47 +00:00
|
|
|
|
|
|
|
@Entity()
|
|
|
|
@Index(['userId', 'pageId'], { unique: true })
|
|
|
|
export class PageLike {
|
|
|
|
@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 14:58:30 +00:00
|
|
|
onDelete: 'CASCADE',
|
2019-05-17 10:56:47 +00:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public user: User | null;
|
|
|
|
|
|
|
|
@Column(id())
|
|
|
|
public pageId: Page['id'];
|
|
|
|
|
|
|
|
@ManyToOne(type => Page, {
|
2021-12-09 14:58:30 +00:00
|
|
|
onDelete: 'CASCADE',
|
2019-05-17 10:56:47 +00:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public page: Page | null;
|
|
|
|
}
|