/**(V3.1 新增) * 模型字段表 */ CREATE TABLE `yzm_model_field` ( `fieldid` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '字段id', `modelid` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '模型id', `field` varchar(30) NOT NULL DEFAULT '' COMMENT '字段名', //V6.9 修改 varchar(20)->varchar(30) `name` varchar(30) NOT NULL DEFAULT '' COMMENT '字段别名', `tips` varchar(100) NOT NULL DEFAULT '' COMMENT '字段提示', `css` varchar(30) NOT NULL DEFAULT '', //V7.0 已删除 `setting_catid` varchar(100) NOT NULL DEFAULT '', //V7.0 新增 `minlength` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '最小值', `maxlength` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '最大值', `errortips` varchar(100) NOT NULL DEFAULT '' COMMENT '错误提示', `fieldtype` varchar(20) NOT NULL DEFAULT '' COMMENT '表单类别', `defaultvalue` varchar(30) NOT NULL DEFAULT '' COMMENT '默认值', `setting` text COMMENT '配置', //V3.7 修改 mediumtext ->text //V5.6删除了NOT NULL `isrequired` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '必填字段', `issystem` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '系统字段', `isunique` tinyint(1) unsigned NOT NULL DEFAULT '0' , `isadd` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '会员投稿', `listorder` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT '排序', `disabled` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '禁用', `type` tinyint(1) unsigned NOT NULL DEFAULT '0', `status` tinyint(1) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`fieldid`), KEY `modelid` (`modelid`,`disabled`), KEY `field` (`field`,`modelid`), KEY `status` (`status`) ) ENGINE=MyISAM AUTO_INCREMENT=38 DEFAULT CHARSET=utf8;
yzm_model_field
上一篇:yzm_model
下一篇:yzm_module
有问题可以加入织梦技术QQ群一起交流学习
本站vip会员 请加入 VIP②群 PS:加入时备注用户名或昵称
普通注册会员或访客 请加入技术交流②群
作者:54818模板网 关注:607 时间:2023-09-28 14:30:36
相关网站教程: