feat: add web url
This commit is contained in:
parent
35600b9d7e
commit
e7a70e8653
3 changed files with 5 additions and 0 deletions
|
|
@ -0,0 +1,2 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE "Branch" ADD COLUMN "webUrl" TEXT;
|
||||
|
|
@ -208,6 +208,7 @@ model Branch {
|
|||
email String
|
||||
contactName String?
|
||||
lineId String?
|
||||
webUrl String?
|
||||
|
||||
latitude String
|
||||
longitude String
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue