summary refs log tree commit diff
path: root/util/src/entities/ClientRelase.ts
blob: e021b82ba01f0d81befa48efa5c991bc501d16d6 (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_relase")
export class Relase 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;
}