代码拉取完成,页面将自动刷新
同步操作将从 Alive工作室/disk网盘 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/*
Navicat MySQL Data Transfer
Source Server : Wamp
Source Server Version : 50714
Source Host : localhost:3306
Source Database : disk
Target Server Type : MYSQL
Target Server Version : 50714
File Encoding : 65001
Date: 2019-06-16 14:01:20
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for netdisk_files
-- ----------------------------
DROP TABLE IF EXISTS `netdisk_files`;
CREATE TABLE `netdisk_files` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`uid` int(10) unsigned DEFAULT NULL,
`file_name` varchar(255) DEFAULT NULL,
`file_size` bigint(20) unsigned DEFAULT NULL,
`file_type` varchar(255) DEFAULT NULL,
`folder_id` int(10) unsigned DEFAULT NULL,
`real_path` varchar(255) DEFAULT NULL,
`create_time` timestamp NULL DEFAULT NULL,
`update_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
`is_share` tinyint(3) DEFAULT '0',
`is_delete` tinyint(3) unsigned DEFAULT '0' COMMENT '0未删除,1已删除',
`delete_time` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of netdisk_files
-- ----------------------------
-- ----------------------------
-- Table structure for netdisk_folders
-- ----------------------------
DROP TABLE IF EXISTS `netdisk_folders`;
CREATE TABLE `netdisk_folders` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`father_id` int(10) unsigned DEFAULT NULL,
`uid` int(10) unsigned DEFAULT NULL,
`folder_name` varchar(255) DEFAULT NULL,
`create_time` timestamp NULL DEFAULT NULL,
`update_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
`is_share` tinyint(3) DEFAULT '0' COMMENT '0 为私有 1为共用',
`is_delete` tinyint(3) unsigned DEFAULT '0',
`delete_time` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of netdisk_folders
-- ----------------------------
-- ----------------------------
-- Table structure for netdisk_users
-- ----------------------------
DROP TABLE IF EXISTS `netdisk_users`;
CREATE TABLE `netdisk_users` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(255) DEFAULT NULL,
`password` char(32) DEFAULT NULL,
`email` varchar(255) DEFAULT NULL,
`phone` varchar(255) DEFAULT NULL,
`access_token` varchar(255) DEFAULT NULL,
`reg_time` timestamp NULL DEFAULT NULL,
`reg_ip` varchar(255) DEFAULT NULL,
`last_login_time` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
`last_login_ip` varchar(255) DEFAULT NULL,
`total_size` int(10) unsigned DEFAULT '1073741824',
PRIMARY KEY (`id`),
UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of netdisk_users
-- ----------------------------
INSERT INTO `netdisk_users` VALUES ('1', 'Alive', 'e10adc3949ba59abbe56e057f20f883e', null, '13260556516', null, null, null, '2019-06-16 13:29:09', '127.0.0.1', '1073741824');
INSERT INTO `netdisk_users` VALUES ('2', '张三', 'e10adc3949ba59abbe56e057f20f883e', '[email protected]', '10086', null, null, null, '2019-06-15 09:10:48', null, '1073741824');
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。