Skip to content

Commit

Permalink
✔ 😘 🥰
Browse files Browse the repository at this point in the history
  • Loading branch information
bifeldy committed Dec 22, 2023
1 parent cccf7ef commit 42ac3b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dist/fansubid/server/main.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions src/api/entities/DdlFile.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { Exclude } from 'class-transformer';
import { Entity, Column, ManyToOne, CreateDateColumn, UpdateDateColumn, PrimaryColumn, Index } from 'typeorm'

import { DdlFileModel, UserModel } from '../../models/req-res.model';
Expand Down Expand Up @@ -25,9 +26,11 @@ export class DdlFile implements DdlFileModel {
@Column({ type: 'int', default: 0 })
download_count: number;

@Exclude()
@Column({ type: 'text' })
msg_id: string;

@Exclude()
@Column({ type: 'text', nullable: true })
msg_parent: string;

Expand Down

0 comments on commit 42ac3b1

Please sign in to comment.