Update coffee offerings and remove unwanted drinks

Update Arabic coffee image to show brown coffee, add black coffee as a new service, and remove water, Nescafe, and soft drinks.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 77cfe984-2c65-4152-bb7a-0df28274fe66
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: d240a834-72fd-4784-b9b8-31458c00fd22
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/c3c252e4-c83d-40ca-9fff-99a3ea60701e/77cfe984-2c65-4152-bb7a-0df28274fe66/UggHvbd
Replit-Helium-Checkpoint-Created: true
This commit is contained in:
riyadhafraa
2026-05-04 18:57:17 +00:00
parent 85319e69a0
commit 5be8fff961
4 changed files with 9 additions and 19 deletions
+2 -18
View File
@@ -302,20 +302,12 @@ async function main() {
},
{
categoryId: beveragesCat?.id ?? null,
nameAr: "ماء",
nameEn: "Water",
nameAr: "قهوة بلاك",
nameEn: "Black Coffee",
price: "0.00",
isAvailable: true,
sortOrder: 3,
},
{
categoryId: beveragesCat?.id ?? null,
nameAr: "قهوة نسكافيه",
nameEn: "Nescafe",
price: "0.00",
isAvailable: true,
sortOrder: 4,
},
{
categoryId: beveragesCat?.id ?? null,
nameAr: "عصير طازج",
@@ -324,14 +316,6 @@ async function main() {
isAvailable: true,
sortOrder: 5,
},
{
categoryId: beveragesCat?.id ?? null,
nameAr: "مشروب غازي",
nameEn: "Soft Drink",
price: "3.00",
isAvailable: false,
sortOrder: 6,
},
];
await db.insert(servicesTable).values(services).onConflictDoNothing({ target: servicesTable.nameEn });