feat: add web url

This commit is contained in:
Methapon Metanipat 2024-08-29 11:53:00 +07:00
parent 35600b9d7e
commit e7a70e8653
3 changed files with 5 additions and 0 deletions

View file

@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Branch" ADD COLUMN "webUrl" TEXT;

View file

@ -208,6 +208,7 @@ model Branch {
email String
contactName String?
lineId String?
webUrl String?
latitude String
longitude String

View file

@ -37,6 +37,7 @@ type BranchCreate = {
zipCode: string;
email: string;
contactName?: string | null;
webUrl?: string | null;
contact?: string | string[] | null;
telephoneNo: string;
lineId?: string | null;
@ -69,6 +70,7 @@ type BranchUpdate = {
email?: string;
telephoneNo?: string;
contactName?: string;
webUrl?: string | null;
contact?: string | string[] | null;
lineId?: string;
longitude?: string;