设置外键检查为0;------- 地区表结构 ------- 如果存在则删除area表;创建表area ( id bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'ID', create_date datetime NOT NULL COMMENT '创建日期', modify_date datetime NOT NULL COMMENT '修改日期', version bigint(20) NOT NULL COMMENT '版本号', orders int(11) DEFAULT NULL COMMENT '订单', full_name longtext NOT NULL COMMENT '全称', grade int(11) NOT NULL COMMENT '层级', name varchar(255) NOT NULL DEFAULT '' COMMENT '名称', tree_path varchar(255) NOT NULL DEFAULT '' COMMENT '树路径', parent_id bigint(20) DEFAULT NULL COMMENT '上级地区ID', 主键 (id), 索引 ind_area_parent (parent_id) ) ENGINE=InnoDB AUTO_INCREMENT=46510 DEFAULT CHARSET=utf8;