production

This commit is contained in:
2026-01-10 11:14:27 +03:30
parent b5bc94c8e5
commit a1ca2a62c8
19 changed files with 64 additions and 6081 deletions
@@ -4,20 +4,19 @@ import { BaseEntity } from '../../../common/entities/base.entity';
@Entity({ tableName: 'products' })
export class product extends BaseEntity {
@Property({ primary: true })
id: bigint
@Property({ nullable: true })
title?: string;
@Property()
title: string;
@Property({ type: 'text', nullable: true })
linkUrl?: string;
@Property({ type: 'boolean', default: true })
isActive: boolean = true;
@Property({ type: 'json', nullable: true })
images?: string[];
}