1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-22 18:32:29 +01:00

Remove use of PRODUCTION env var

This commit is contained in:
Madeline 2022-12-17 17:29:42 +11:00
parent d49acb5546
commit 8edd3b53c2
No known key found for this signature in database
GPG Key ID: 1958E017C36F2E47

View File

@ -111,10 +111,7 @@ export class Message extends BaseClass {
@ManyToOne(() => Application)
application?: Application;
@Column({
nullable: true,
type: process.env.PRODUCTION ? "longtext" : undefined,
})
@Column({ nullable: true })
content?: string;
@Column()