feat: add banner field to the restaurant model.

This commit is contained in:
2025-12-03 19:16:18 +03:00
parent fdfaafcdda
commit 08404eb145
4 changed files with 8 additions and 0 deletions
+1
View File
@@ -84,6 +84,7 @@ model Restaurant {
slug String @unique // used as /domain.com/slug
description String?
logo String? // image URL
banner String?
ownerId String
owner User @relation(fields: [ownerId], references: [id])