add slug to catalogue

This commit is contained in:
2026-05-18 12:58:42 +03:30
parent dc15749c22
commit 3889ec19e3
2 changed files with 11 additions and 3 deletions
@@ -13,6 +13,9 @@ export class Catalogue extends BaseEntity {
@Property({ type: "varchar", length: 255})
name!: string;
@Property({ type: "varchar", length: 255, nullable: false })
slug!: string;
@Property({ type: "json" })
content!: string;