|
@@ -31,4 +31,6 @@ create table fs_user_project_tag (
|
|
|
) engine = InnoDB comment = '用户项目标签表';
|
|
|
|
|
|
alter table fs_user_company_user
|
|
|
- add column create_time datetime comment '创建时间';
|
|
|
+ add column create_time datetime comment '创建时间';
|
|
|
+
|
|
|
+ALTER TABLE fs_user_company_user MODIFY COLUMN create_time datetime DEFAULT now() NULL COMMENT '创建时间';
|