|
|
@ -6,6 +6,12 @@ export class MovieInfo extends BaseEntity |
|
|
|
@PrimaryGeneratedColumn() |
|
|
|
id!: number; |
|
|
|
|
|
|
|
@Column({ type: "char", length: 2, nullable: true }) |
|
|
|
originalLanguage!: string | null; |
|
|
|
|
|
|
|
@Column({ type: "varchar", length: 255, nullable: true }) |
|
|
|
originalTitle!: string | null; |
|
|
|
|
|
|
|
@Column({ type: "text", nullable: true }) |
|
|
|
overview!: string | null; |
|
|
|
|
|
|
|