1
0
mirror of https://github.com/FatttSnake/Pinnacle-OA.git synced 2026-04-04 22:41:24 +08:00

Updated init.sql

This commit is contained in:
2023-05-01 00:56:24 +08:00
parent bb42dc4e5f
commit c514348b1b

View File

@@ -316,5 +316,7 @@ create table `t_attendance`
`modify_id` bigint not null comment '修改人',
`modify_time` datetime not null default CURRENT_TIMESTAMP comment '修改时间',
`deleted` int not null default 0,
`version` int not null default 0
`version` int not null default 0,
constraint t_attendance_user_id_fk foreign key (user_id) references t_user(id),
constraint t_attendance_modify_id_fk foreign key (modify_id) references t_user(id)
) comment '考勤';