You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wkcrm/public/sql/update_sql_20201202.sql

10 lines
584 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

CREATE TABLE `5kcrm_admin_field_grant` (
`grant_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`role_id` int(10) NOT NULL COMMENT '角色ID',
`module` varchar(32) NOT NULL COMMENT '模块crm、oa、bi等',
`column` varchar(32) NOT NULL COMMENT '栏目leads、customer、contacts等',
`content` text NOT NULL COMMENT '授权内容',
`update_time` int(10) NOT NULL COMMENT '修改日期',
`create_time` int(10) NOT NULL COMMENT '创建日期',
PRIMARY KEY (`grant_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='角色权限管理-字段授权';