create table session_log
(
userid int not null,
phonenumber int
);
comment on column session_log is '세션 로그';
comment on column session_log.userid is 'The user ID';
comment on column session_log.phonenumber is 'The phone number including the area code';