All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.sql.init-mysql.sql Maven / Gradle / Ivy

There is a newer version: 3.5.0
Show newest version
-- 建表
CREATE TABLE `dictionary` (
  `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `parent_id` int unsigned NOT NULL COMMENT '父ID',
  `type` varchar(50) NOT NULL COMMENT '字典类型',
  `item_name` varchar(100) NOT NULL COMMENT '显示名',
  `item_value` varchar(100) DEFAULT NULL COMMENT '存储值',
  `comment` varchar(100) DEFAULT NULL COMMENT '备注',
  `extdata` varchar(200) DEFAULT NULL COMMENT '扩展JSON',
  `sort_id` smallint NOT NULL DEFAULT '99' COMMENT '排序号',
  `system` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否系统预置',
  `editable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否可编辑',
  `deleted` tinyint(1) NOT NULL DEFAULT '0' COMMENT '删除标记',
  `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- 创建索引
create index idx_directory on dictionary(type, item_value);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy