We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CREATE TABLE wx_config(idint(100) NOT NULL AUTO_INCREMENT,namevarchar(255) NOT NULL DEFAULT '' COMMENT '公众号名称',wx_bizvarchar(255) NOT NULL DEFAULT '' COMMENT '公众号唯一id',next_offset int(100) NOT NULL DEFAULT '0' COMMENT '下一页id', PRIMARY KEY (id) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='微信配置表';
CREATE TABLE
(
int(100) NOT NULL AUTO_INCREMENT,
varchar(255) NOT NULL DEFAULT '' COMMENT '公众号名称',
varchar(255) NOT NULL DEFAULT '' COMMENT '公众号唯一id',
int(100) NOT NULL DEFAULT '0' COMMENT '下一页id', PRIMARY KEY (
) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='微信配置表';
The text was updated successfully, but these errors were encountered:
No branches or pull requests
CREATE TABLE
wx_config(
idint(100) NOT NULL AUTO_INCREMENT,
namevarchar(255) NOT NULL DEFAULT '' COMMENT '公众号名称',
wx_bizvarchar(255) NOT NULL DEFAULT '' COMMENT '公众号唯一id',
next_offsetint(100) NOT NULL DEFAULT '0' COMMENT '下一页id', PRIMARY KEY (
id) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='微信配置表';
The text was updated successfully, but these errors were encountered: