当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
rain_ai.sql 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
rain1024 提交于 2018-04-23 13:58 . 添加数据库文件
/*
Navicat MySQL Data Transfer
Source Server : 本地数据库
Source Server Version : 50547
Source Host : localhost:3306
Source Database : rain
Target Server Type : MYSQL
Target Server Version : 50547
File Encoding : 65001
Date: 2018-04-23 13:29:37
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `rain_ai`
-- ----------------------------
DROP TABLE IF EXISTS `rain_ai`;
CREATE TABLE `rain_ai` (
`u_id` int(11) NOT NULL AUTO_INCREMENT,
`state` int(11) DEFAULT NULL,
`date` char(255) DEFAULT NULL,
`face1` int(11) DEFAULT NULL,
`face2` int(11) DEFAULT NULL,
`sound` int(11) DEFAULT NULL,
`ocr` int(11) DEFAULT NULL,
`image1` int(11) DEFAULT NULL,
`image2` int(11) DEFAULT NULL,
`image3` int(11) DEFAULT NULL,
`image4` int(11) DEFAULT NULL,
`text1` int(11) DEFAULT NULL,
`text2` int(11) DEFAULT NULL,
`text3` int(11) DEFAULT NULL,
`text4` int(11) DEFAULT NULL,
`text5` int(11) DEFAULT NULL,
`text6` int(11) DEFAULT NULL,
`text7` int(11) DEFAULT NULL,
`text8` int(11) DEFAULT NULL,
PRIMARY KEY (`u_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of rain_ai
-- ----------------------------
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化