2023-07-27 08:31:52 +03:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2020-02-18 01:41:32 +02:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, OneToOne } from 'typeorm';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { id } from '../id.js';
|
2023-08-16 11:51:28 +03:00
|
|
|
import { MiNote } from './Note.js';
|
|
|
|
import type { MiUser } from './User.js';
|
2020-02-18 01:41:32 +02:00
|
|
|
|
2023-08-16 11:51:28 +03:00
|
|
|
@Entity('promo_note')
|
|
|
|
export class MiPromoNote {
|
2020-02-18 01:41:32 +02:00
|
|
|
@PrimaryColumn(id())
|
2023-08-16 11:51:28 +03:00
|
|
|
public noteId: MiNote['id'];
|
2020-02-18 01:41:32 +02:00
|
|
|
|
2023-08-16 11:51:28 +03:00
|
|
|
@OneToOne(type => MiNote, {
|
2021-12-09 16:58:30 +02:00
|
|
|
onDelete: 'CASCADE',
|
2020-02-18 01:41:32 +02:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 11:51:28 +03:00
|
|
|
public note: MiNote | null;
|
2020-02-18 01:41:32 +02:00
|
|
|
|
|
|
|
@Column('timestamp with time zone')
|
|
|
|
public expiresAt: Date;
|
|
|
|
|
|
|
|
//#region Denormalized fields
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: '[Denormalized]',
|
2020-02-18 01:41:32 +02:00
|
|
|
})
|
2023-08-16 11:51:28 +03:00
|
|
|
public userId: MiUser['id'];
|
2020-02-18 01:41:32 +02:00
|
|
|
//#endregion
|
|
|
|
}
|