2020-03-14 14:27:18 +08:00
|
|
|
DROP DATABASE IF EXISTS `pig_codegen`;
|
|
|
|
|
|
|
|
CREATE DATABASE `pig_codegen` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;
|
|
|
|
|
|
|
|
SET NAMES utf8mb4;
|
|
|
|
SET FOREIGN_KEY_CHECKS = 0;
|
|
|
|
|
|
|
|
USE `pig_codegen`;
|
|
|
|
|
2020-09-14 21:39:42 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020 pig4cloud Authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-03-14 14:27:18 +08:00
|
|
|
-- ----------------------------
|
|
|
|
-- Table structure for gen_datasource_conf
|
|
|
|
-- ----------------------------
|
|
|
|
DROP TABLE IF EXISTS `gen_datasource_conf`;
|
|
|
|
CREATE TABLE `gen_datasource_conf` (
|
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
|
|
|
|
`name` varchar(64) DEFAULT NULL,
|
|
|
|
`url` varchar(255) DEFAULT NULL,
|
|
|
|
`username` varchar(64) DEFAULT NULL,
|
|
|
|
`password` varchar(64) DEFAULT NULL,
|
|
|
|
`create_date` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
|
|
|
`update_date` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新',
|
|
|
|
`del_flag` char(1) DEFAULT '0',
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COMMENT='数据源表';
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
-- Table structure for gen_form_conf
|
|
|
|
-- ----------------------------
|
|
|
|
DROP TABLE IF EXISTS `gen_form_conf`;
|
|
|
|
CREATE TABLE `gen_form_conf` (
|
|
|
|
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'ID',
|
|
|
|
`table_name` varchar(64) DEFAULT NULL,
|
|
|
|
`form_info` json NOT NULL COMMENT '表单信息',
|
|
|
|
`create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
|
|
|
`update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
|
|
|
|
`del_flag` char(1) DEFAULT '0',
|
|
|
|
PRIMARY KEY (`id`) USING BTREE,
|
|
|
|
KEY `table_name` (`table_name`)
|
|
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='表单配置';
|
|
|
|
|
|
|
|
SET FOREIGN_KEY_CHECKS = 1;
|