代码拉取完成,页面将自动刷新
同步操作将从 WebberShaw/CodeBridge 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/*
Navicat Premium Data Transfer
Source Server : server
Source Server Type : MySQL
Source Server Version : 80031 (8.0.31)
Source Host : ddns.webbershaw.fun:3306
Source Schema : relationship
Target Server Type : MySQL
Target Server Version : 80031 (8.0.31)
File Encoding : 65001
Date: 15/03/2023 11:28:40
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for class-task
-- ----------------------------
DROP TABLE IF EXISTS `class-task`;
CREATE TABLE `class-task` (
`class_id` int NOT NULL,
`task_id` int NOT NULL,
`start_time` datetime DEFAULT NULL,
`end_time` datetime DEFAULT NULL,
`invisible` tinyint DEFAULT '1',
`accessible` tinyint DEFAULT '1',
`weight` double DEFAULT NULL,
`resubmit` int DEFAULT '1',
`check_after_submit` tinyint DEFAULT '0',
`correction_mode` tinyint DEFAULT NULL,
`deleted` tinyint DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-- ----------------------------
-- Table structure for student-class
-- ----------------------------
DROP TABLE IF EXISTS `student-class`;
CREATE TABLE `student-class` (
`user_id` bigint NOT NULL,
`class_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-- ----------------------------
-- Table structure for student-task
-- ----------------------------
DROP TABLE IF EXISTS `student-task`;
CREATE TABLE `student-task` (
`user_id` bigint NOT NULL,
`task_id` int NOT NULL,
`status` tinyint NOT NULL DEFAULT '0',
`score` double DEFAULT NULL,
`accessible` tinyint NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-- ----------------------------
-- Table structure for student-task-resource
-- ----------------------------
DROP TABLE IF EXISTS `student-task-resource`;
CREATE TABLE `student-task-resource` (
`user_id` bigint NOT NULL,
`task_id` int NOT NULL,
`recource_id` int NOT NULL,
`status` tinyint DEFAULT NULL,
`score` double DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
SET FOREIGN_KEY_CHECKS = 1;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。