1. MySQL
create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '創建時間', `update_time` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新時間',
2. PG
"create_time" timestamp(6) DEFAULT ('now'::text)::timestamp(6) with time zone, 更新操作好像要用到觸發器,待補充