Cài đặt tính năng thay đổi tên và mô tả tour

This commit is contained in:
2026-06-15 21:22:05 +07:00
parent aec9112064
commit dcaf71032c
5 changed files with 6 additions and 1 deletions
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Tour" ADD COLUMN "description" TEXT;
+1
View File
@@ -78,6 +78,7 @@ model User {
model Tour {
id String @id @default(uuid())
title String
description String?
startDate DateTime?
endDate DateTime?
createdAt DateTime @default(now())