Skip to content

Commit

Permalink
Merge pull request #208 from WeBankFinTech/dev-0.9.0
Browse files Browse the repository at this point in the history
Dev 0.9.0 merge into master
  • Loading branch information
wushengyeyouya authored Jul 13, 2020
2 parents 7f3fc2d + d846cc5 commit 1e65653
Show file tree
Hide file tree
Showing 224 changed files with 5,575 additions and 1,364 deletions.
2 changes: 1 addition & 1 deletion assembly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>dss</artifactId>
<groupId>com.webank.wedatasphere.dss</groupId>
<version>0.8.0</version>
<version>0.9.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion conf/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,4 @@ AZKABAN_ADRESS_PORT=8081
QUALITIS_ADRESS_IP=127.0.0.1
QUALITIS_ADRESS_PORT=8090

DSS_VERSION=0.8.0
DSS_VERSION=0.9.0
2 changes: 1 addition & 1 deletion datachecker-appjoint/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<artifactId>dss</artifactId>
<groupId>com.webank.wedatasphere.dss</groupId>
<version>0.8.0</version>
<version>0.9.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
154 changes: 154 additions & 0 deletions db/dss_ddl.sql
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ CREATE TABLE `dss_project` (
`name` varchar(200) COLLATE utf8_bin DEFAULT NULL,
`source` varchar(50) COLLATE utf8_bin DEFAULT NULL COMMENT 'Source of the dss_project',
`description` text COLLATE utf8_bin,
`workspace_id` bigint(20) DEFAULT 1,
`user_id` bigint(20) DEFAULT NULL,
`create_time` datetime DEFAULT NULL,
`create_by` bigint(20) DEFAULT NULL,
Expand Down Expand Up @@ -294,3 +295,156 @@ CREATE TABLE `event_status` (
`msg_id` int(11) NOT NULL COMMENT '消息的最大消费id',
PRIMARY KEY (`receiver`,`topic`,`msg_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='消息消费状态表';


-- ----------------------------
-- Table structure for dss_workspace
-- ----------------------------
DROP TABLE IF EXISTS `dss_workspace`;
CREATE TABLE `dss_workspace` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`label` varchar(255) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
`department` varchar(255) DEFAULT NULL,
`product` varchar(255) DEFAULT NULL,
`source` varchar(255) DEFAULT NULL,
`create_by` varchar(255) DEFAULT NULL,
`create_time` datetime DEFAULT NULL,
`last_update_time` datetime DEFAULT NULL,
`last_update_user` varchar(30) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- ----------------------------
-- Table structure for dss_onestop_menu
-- ----------------------------
DROP TABLE IF EXISTS `dss_onestop_menu`;
CREATE TABLE `dss_onestop_menu` (
`id` int(20) NOT NULL AUTO_INCREMENT,
`name` varchar(64) DEFAULT NULL,
`title_en` varchar(64) DEFAULT NULL,
`title_cn` varchar(64) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
`is_active` tinyint(1) DEFAULT 1,
`icon` varchar(255) DEFAULT NULL,
`order` int(2) DEFAULT NULL,
`create_by` varchar(255) DEFAULT NULL,
`create_time` datetime DEFAULT NULL,
`last_update_time` datetime DEFAULT NULL,
`last_update_user` varchar(30) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- ----------------------------
-- Table structure for dss_onestop_menu_application
-- ----------------------------
DROP TABLE IF EXISTS `dss_onestop_menu_application`;
CREATE TABLE `dss_onestop_menu_application` (
`id` int(20) NOT NULL AUTO_INCREMENT,
`application_id` int(20) DEFAULT NULL,
`onestop_menu_id` int(20) NOT NULL,
`title_en` varchar(64) DEFAULT NULL,
`title_cn` varchar(64) DEFAULT NULL,
`desc_en` varchar(255) DEFAULT NULL,
`desc_cn` varchar(255) DEFAULT NULL,
`labels_en` varchar(255) DEFAULT NULL,
`labels_cn` varchar(255) DEFAULT NULL,
`is_active` tinyint(1) DEFAULT NULL,
`access_button_en` varchar(64) DEFAULT NULL,
`access_button_cn` varchar(64) DEFAULT NULL,
`manual_button_en` varchar(64) DEFAULT NULL,
`manual_button_cn` varchar(64) DEFAULT NULL,
`manual_button_url` varchar(255) DEFAULT NULL,
`icon` varchar(255) DEFAULT NULL,
`order` int(2) DEFAULT NULL,
`create_by` varchar(255) DEFAULT NULL,
`create_time` datetime DEFAULT NULL,
`last_update_time` datetime DEFAULT NULL,
`last_update_user` varchar(30) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- ----------------------------
-- Table structure for dss_onestop_user_favorites
-- ----------------------------
DROP TABLE IF EXISTS `dss_onestop_user_favorites`;
CREATE TABLE `dss_onestop_user_favorites` (
`id` int(20) NOT NULL AUTO_INCREMENT,
`username` varchar(64) DEFAULT NULL,
`workspace_id` bigint(20) DEFAULT 1,
`menu_application_id` int(20) DEFAULT NULL,
`order` int(2) DEFAULT NULL,
`create_by` varchar(255) DEFAULT NULL,
`create_time` datetime DEFAULT NULL,
`last_update_time` datetime DEFAULT NULL,
`last_update_user` varchar(30) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- ----------------------------
-- Table structure for dss_homepage_demo_menu
-- ----------------------------
DROP TABLE IF EXISTS `dss_homepage_demo_menu`;
CREATE TABLE `dss_homepage_demo_menu` (
`id` int(20) NOT NULL AUTO_INCREMENT,
`name` varchar(64) DEFAULT NULL,
`title_en` varchar(64) DEFAULT NULL,
`title_cn` varchar(64) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
`is_active` tinyint(1) DEFAULT 1,
`icon` varchar(255) DEFAULT NULL,
`order` int(2) DEFAULT NULL,
`create_by` varchar(255) DEFAULT NULL,
`create_time` datetime DEFAULT NULL,
`last_update_time` datetime DEFAULT NULL,
`last_update_user` varchar(30) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- ----------------------------
-- Table structure for dss_homepage_demo_instance
-- ----------------------------
DROP TABLE IF EXISTS `dss_homepage_demo_instance`;
CREATE TABLE `dss_homepage_demo_instance` (
`id` int(20) NOT NULL AUTO_INCREMENT,
`menu_id` int(20) DEFAULT NULL,
`name` varchar(64) DEFAULT NULL,
`url` varchar(128) DEFAULT NULL,
`title_en` varchar(64) DEFAULT NULL,
`title_cn` varchar(64) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
`is_active` tinyint(1) DEFAULT 1,
`icon` varchar(255) DEFAULT NULL,
`order` int(2) DEFAULT NULL,
`click_num` int(11) DEFAULT 0,
`create_by` varchar(255) DEFAULT NULL,
`create_time` datetime DEFAULT NULL,
`last_update_time` datetime DEFAULT NULL,
`last_update_user` varchar(30) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- ----------------------------
-- Table structure for dss_homepage_video
-- ----------------------------
DROP TABLE IF EXISTS `dss_homepage_video`;
CREATE TABLE `dss_homepage_video` (
`id` int(20) NOT NULL AUTO_INCREMENT,
`name` varchar(64) DEFAULT NULL,
`url` varchar(128) DEFAULT NULL,
`title_en` varchar(64) DEFAULT NULL,
`title_cn` varchar(64) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
`is_active` tinyint(1) DEFAULT 1,
`icon` varchar(255) DEFAULT NULL,
`order` int(2) DEFAULT NULL,
`play_num` int(11) DEFAULT 0,
`create_by` varchar(255) DEFAULT NULL,
`create_time` datetime DEFAULT NULL,
`last_update_time` datetime DEFAULT NULL,
`last_update_user` varchar(30) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

Loading

0 comments on commit 1e65653

Please sign in to comment.