You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
1.1 KiB
SQL
21 lines
1.1 KiB
SQL
create table tb_calendar_schedule
|
|
(
|
|
SCHEDULE_ID varchar(20) not null comment '일정 ID'
|
|
primary key,
|
|
CATEGORY_CD varchar(20) not null comment '범주 코드',
|
|
TITLE varchar(200) not null comment '제목',
|
|
PLACE varchar(200) null comment '장소',
|
|
CONTENT text null comment '내용',
|
|
START_DTTM datetime not null comment '시작 일시',
|
|
END_DTTM datetime not null comment '종료 일시',
|
|
PARTICIPANTS varchar(500) null comment '참여자',
|
|
ALL_DAY_YN varchar(1) default 'N' not null comment '종일 여부(Y/N)',
|
|
PRIVATE_YN varchar(1) default 'N' not null comment '비공개 여부(Y/N)',
|
|
REG_DTTM datetime null comment '등록 일시',
|
|
RGTR varchar(20) null comment '등록자',
|
|
MDFCN_DTTM datetime null comment '수정 일시',
|
|
MDFR varchar(20) null comment '수정자'
|
|
)
|
|
comment '일정 정보';
|
|
|