Skip to content

Commit

Permalink
Merge pull request #1374 from yulinqu/patch-1
Browse files Browse the repository at this point in the history
Update davinci.sql
  • Loading branch information
RichardShan authored Jan 19, 2020
2 parents 141592c + 4d77181 commit e8747bd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bin/davinci.sql
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,10 @@ CREATE TABLE `rel_user_organization`
`org_id` bigint(20) NOT NULL,
`user_id` bigint(20) NOT NULL,
`role` smallint(1) NOT NULL DEFAULT '0',
`create_by` bigint(20) DEFAULT NULL,
`create_time` datetime DEFAULT NULL,
`update_by` bigint(20) DEFAULT NULL,
`update_time` datetime DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `idx_org_user` (`org_id`, `user_id`) USING BTREE
) ENGINE = InnoDB
Expand Down Expand Up @@ -670,4 +674,4 @@ CREATE TABLE `share_download_record` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;


SET FOREIGN_KEY_CHECKS = 1;
SET FOREIGN_KEY_CHECKS = 1;

0 comments on commit e8747bd

Please sign in to comment.