$sql = create table `system_novel_one` (
`id` int(11) not null auto_increment,
`name` char(200) default null comment '章节名称',
`contents` text comment '章节文字',
`next` int(11) default null comment '下一章地址',
`pid` int(11) default null comment '小说名称',
`novel_url` char(50) default null comment '小说章节地址',
primary key (`id`)
) engine=innodb auto_increment=1 default charset=utf8mb4;
sql;
dump(m()->execute($sql));