Skip to content

Commit d53e772

Browse files
authored
Merge pull request #53 from YAPP-Github/fix/T3-140
[T3-140] changed_routine에서 userId 타입 수정
2 parents 69fec77 + 78adf14 commit d53e772

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
-- 새로운 changed_routine 테이블 생성(user_id를 UUID에서 BIGINT로 변경)
2+
create table changed_routine
3+
(
4+
changed_execution_time time(6) not null,
5+
changed_routine_date date not null,
6+
original_routine_date date not null,
7+
created_at timestamp not null,
8+
deleted_at datetime(6) null,
9+
history_end_date_time datetime(6) not null,
10+
history_seq bigint not null,
11+
history_start_date_time datetime(6) not null,
12+
updated_at timestamp null,
13+
changed_routine_id binary(16) not null,
14+
routine_id binary(16) null,
15+
user_id bigint not null,
16+
changed_routine_name varchar(255) not null,
17+
changed_div_code varchar(40) null,
18+
primary key (history_seq, changed_routine_id)
19+
);

0 commit comments

Comments
 (0)