iceshrimp-legacy/packages/backend/src/models/entities/announcement.ts

44 lines
864 B
TypeScript
Raw Normal View History

2023-01-13 05:40:33 +01:00
import { Entity, Index, Column, PrimaryColumn } from "typeorm";
import { id } from "../id.js";
@Entity()
export class Announcement {
@PrimaryColumn(id())
public id: string;
@Index()
@Column('timestamp with time zone', {
2021-12-09 15:58:30 +01:00
comment: 'The created date of the Announcement.',
})
public createdAt: Date;
@Column('timestamp with time zone', {
comment: 'The updated date of the Announcement.',
2021-12-09 15:58:30 +01:00
nullable: true,
})
public updatedAt: Date | null;
@Column('varchar', {
2021-12-09 15:58:30 +01:00
length: 8192, nullable: false,
})
public text: string;
@Column('varchar', {
2021-12-09 15:58:30 +01:00
length: 256, nullable: false,
})
public title: string;
@Column('varchar', {
2021-12-09 15:58:30 +01:00
length: 1024, nullable: true,
})
public imageUrl: string | null;
constructor(data: Partial<Announcement>) {
if (data == null) return;
for (const [k, v] of Object.entries(data)) {
(this as any)[k] = v;
}
}
}