保誠-保戶業務員媒合平台
jack
2023-07-11 cde3e6f8a69cc314093c4b9f8b9b0c6b5e9176b2
1
2
3
4
5
6
7
-- 建立 已經通知客戶未處理預約單的紀錄 table
CREATE TABLE public.appointment_expiring_notify_record (
   id bigserial NOT NULL,
   appointment_id bigserial NOT NULL,
   send_time timestamp NULL,
   CONSTRAINT appointment_expiring_notify_record_pk PRIMARY KEY (id)
);