欢迎来到 54818模板网!这是一个yzmcms的模板分享站。

yzm_model

相关案例演示

/**(V3.1 新增)
 * 模型表
 */
CREATE TABLE `yzm_model` (
  `modelid` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '模型id',
  `siteid` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '网站ID',  //V6.3 新增
  `name` char(30) NOT NULL DEFAULT '' COMMENT '模型名称',
  `tablename` varchar(30) NOT NULL DEFAULT '' COMMENT '表名',         //V6.9 修改 char(20)->varchar(30)
  `alias` varchar(30) NOT NULL DEFAULT '' COMMENT '模型别名',  //V6.5 新增
  `description` varchar(100) NOT NULL DEFAULT '' COMMENT '模型描述',
  `setting` text,
  `inputtime` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间',
  `items` smallint(5) unsigned NOT NULL DEFAULT '0',
  `disabled` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '状态,1禁用,2启用',
  `type` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `sort` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `issystem` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '系统模型',
  `isdefault` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '默认模型',  //V6.2 新增
  PRIMARY KEY (`modelid`),
  KEY `type` (`type`)  //V6.3 删除
  KEY `siteid` (`siteid`,`type`)  //V6.3 新增
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

    上一篇:yzm_message_group

    下一篇:yzm_model_field

    作者:54818模板网 关注:665 时间:2023-05-17 08:46:56
    相关网站教程