egirlskey/packages/backend/src/models/PromoNote.ts

34 lines
722 B
TypeScript
Raw Normal View History

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