langueages

This commit is contained in:
2026-06-29 20:29:41 +03:00
parent 958152a688
commit e30cbfa132
19 changed files with 1014 additions and 40 deletions
+3
View File
@@ -13,6 +13,7 @@ model categories {
id Int @id @default(autoincrement())
name String @db.VarChar(100)
name_tr String @db.Text
name_i18n Json? @default("{}")
slug String @db.VarChar(100)
order_num Int? @default(0)
status Int? @default(1) @db.SmallInt
@@ -30,6 +31,8 @@ model products {
short_description String? @db.VarChar(255)
description String? @db.Text
description_tr String @db.Text
name_i18n Json? @default("{}")
description_i18n Json? @default("{}")
price Decimal @db.Decimal(10, 2)
image_url String? @db.VarChar(255)
status Int? @default(1) @db.SmallInt