summary refs log tree commit diff
path: root/src/util/entities/ClientRelease.ts
blob: 2723ab67dde2554439c88524954c6f3d900e4caa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { Column, Entity } from "typeorm";
import { BaseClass } from "./BaseClass";

@Entity("client_release")
export class Release extends BaseClass {
	@Column()
	name: string;

	@Column()
	pub_date: string;

	@Column()
	url: string;

	@Column()
	deb_url: string;

	@Column()
	osx_url: string;

	@Column()
	win_url: string;

	@Column({ nullable: true })
	notes?: string;
}