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:01:21 +1100
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-03-31 00:01:21 +1100
commit551ac6cd9636f2e1279c79b9a390040780d21461 (patch)
tree64d05c9f18d4d0f5576246065eea6c5df5da16d8 /util/src/entities/ClientRelease.ts
parentMake member.premium_since ISO8601 timestamp (diff)
downloadserver-551ac6cd9636f2e1279c79b9a390040780d21461.tar.xz
Fixed typo in table name 'client_relase' -> 'client_release'. Fixed more typos of the same typo.
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; +}