summary refs log tree commit diff
path: root/util/src/entities/ClientRelease.ts
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-03-31 00:06:20 +1100
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-03-31 00:06:20 +1100
commit91ca2efb7cd9abc40d7be8837baf017592e84aa0 (patch)
tree2322eb600fe2bce6eff8487ca1e37a94541113b4 /util/src/entities/ClientRelease.ts
parentMerge branch 'master' into slowcord (diff)
parentFixed typo in table name 'client_relase' -> 'client_release'. Fixed more typo... (diff)
downloadserver-91ca2efb7cd9abc40d7be8837baf017592e84aa0.tar.xz
Merge branch 'fix/relase_typo' into slowcord
Diffstat (limited to 'util/src/entities/ClientRelease.ts')
-rw-r--r--util/src/entities/ClientRelease.ts26
1 files changed, 26 insertions, 0 deletions
diff --git a/util/src/entities/ClientRelease.ts b/util/src/entities/ClientRelease.ts
new file mode 100644

index 00000000..c5afd307 --- /dev/null +++ b/util/src/entities/ClientRelease.ts
@@ -0,0 +1,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; +}