weaver-hrm-salary/resource/sqlupgrade/Mysql/sql202207120303.sql

14 lines
688 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

CREATE TABLE hrsa_salary_sys_conf
(
id bigint(0) NOT NULL,
conf_key varchar(200) NOT NULL COMMENT '标识',
conf_value varchar(500) NOT NULL COMMENT '',
title varchar(200) NULL DEFAULT NULL COMMENT '标题',
module varchar(200) NULL DEFAULT NULL COMMENT '所属模块',
order_weight int(0) NULL DEFAULT NULL COMMENT '排序权重',
description varchar(200) NULL DEFAULT NULL COMMENT '描述',
delete_type int(0) NULL DEFAULT NULL COMMENT '是否已删除0否1是',
create_time datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
update_time datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
PRIMARY KEY (id) USING BTREE
) ;