vault backup: 2025-12-04 09:12:56
This commit is contained in:
BIN
各种项目/咪咕/assets/8fdedf2d728d75b16b20e6d86475053.png
Normal file
BIN
各种项目/咪咕/assets/8fdedf2d728d75b16b20e6d86475053.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 59 KiB |
BIN
各种项目/咪咕/assets/Pasted image 20220401115211.png
Normal file
BIN
各种项目/咪咕/assets/Pasted image 20220401115211.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 220 KiB |
BIN
各种项目/咪咕/assets/Pasted image 20220401161651.png
Normal file
BIN
各种项目/咪咕/assets/Pasted image 20220401161651.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 41 KiB |
BIN
各种项目/咪咕/assets/Pasted image 20220401170256.png
Normal file
BIN
各种项目/咪咕/assets/Pasted image 20220401170256.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 115 KiB |
BIN
各种项目/咪咕/assets/Pasted image 20220512151019.png
Normal file
BIN
各种项目/咪咕/assets/Pasted image 20220512151019.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 154 KiB |
BIN
各种项目/咪咕/assets/Pasted image 20230626142007.png
Normal file
BIN
各种项目/咪咕/assets/Pasted image 20230626142007.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 34 KiB |
BIN
各种项目/咪咕/assets/bsg新增群集cnds-网络打通.xlsx
Normal file
BIN
各种项目/咪咕/assets/bsg新增群集cnds-网络打通.xlsx
Normal file
Binary file not shown.
119
各种项目/咪咕/assets/migu_wiki.sql
Normal file
119
各种项目/咪咕/assets/migu_wiki.sql
Normal file
@@ -0,0 +1,119 @@
|
||||
# ************************************************************
|
||||
# Sequel Pro SQL dump
|
||||
# Version 4541
|
||||
#
|
||||
# http://www.sequelpro.com/
|
||||
# https://github.com/sequelpro/sequelpro
|
||||
#
|
||||
# Host: 127.0.0.1 (MySQL 5.7.21)
|
||||
# Database: showdoc
|
||||
# Generation Time: 2018-05-19 06:17:59 +0000
|
||||
# ************************************************************
|
||||
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
|
||||
# Dump of table catalogs
|
||||
# ------------------------------------------------------------
|
||||
|
||||
DROP TABLE IF EXISTS `catalogs`;
|
||||
|
||||
CREATE TABLE `catalogs` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`name` varchar(255) DEFAULT NULL,
|
||||
`item_id` int(11) DEFAULT NULL,
|
||||
`s_number` int(11) DEFAULT NULL COMMENT '排序',
|
||||
`created_at` datetime DEFAULT NULL,
|
||||
`parent_cat_id` int(11) DEFAULT NULL,
|
||||
`level` int(11) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
|
||||
|
||||
# Dump of table item
|
||||
# ------------------------------------------------------------
|
||||
|
||||
DROP TABLE IF EXISTS `item`;
|
||||
|
||||
CREATE TABLE `item` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`title` varchar(255) NOT NULL DEFAULT '',
|
||||
`description` varchar(255) NOT NULL DEFAULT '',
|
||||
`password` varchar(255) NOT NULL DEFAULT '',
|
||||
`user_id` int(11) NOT NULL,
|
||||
`type` int(11) NOT NULL DEFAULT '1',
|
||||
`created_at` datetime DEFAULT NULL,
|
||||
`updated_at` datetime DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
|
||||
|
||||
# Dump of table page
|
||||
# ------------------------------------------------------------
|
||||
|
||||
DROP TABLE IF EXISTS `page`;
|
||||
|
||||
CREATE TABLE `page` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`item_id` int(11) DEFAULT NULL,
|
||||
`author_uid` int(11) DEFAULT NULL,
|
||||
`cat_id` int(11) NOT NULL,
|
||||
`page_title` varchar(255) DEFAULT NULL,
|
||||
`page_content` text,
|
||||
`s_number` int(11) DEFAULT NULL,
|
||||
`created_at` datetime DEFAULT NULL,
|
||||
`page_comments` text,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
|
||||
|
||||
# Dump of table template
|
||||
# ------------------------------------------------------------
|
||||
|
||||
DROP TABLE IF EXISTS `template`;
|
||||
|
||||
CREATE TABLE `template` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`user_id` int(11) NOT NULL,
|
||||
`title` varchar(255) NOT NULL DEFAULT '',
|
||||
`content` text NOT NULL,
|
||||
`created_at` datetime DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
|
||||
|
||||
# Dump of table user
|
||||
# ------------------------------------------------------------
|
||||
|
||||
DROP TABLE IF EXISTS `user`;
|
||||
|
||||
CREATE TABLE `user` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`email` varchar(255) NOT NULL DEFAULT '',
|
||||
`password` varchar(255) NOT NULL DEFAULT '',
|
||||
`created_at` datetime NOT NULL,
|
||||
`updated_at` datetime NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `tes` (`email`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
|
||||
|
||||
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
BIN
各种项目/咪咕/assets/云主机列表.xlsx
Normal file
BIN
各种项目/咪咕/assets/云主机列表.xlsx
Normal file
Binary file not shown.
BIN
各种项目/咪咕/assets/对外开发客户端.xlsx
Normal file
BIN
各种项目/咪咕/assets/对外开发客户端.xlsx
Normal file
Binary file not shown.
BIN
各种项目/咪咕/assets/裸金属列表.xlsx
Normal file
BIN
各种项目/咪咕/assets/裸金属列表.xlsx
Normal file
Binary file not shown.
BIN
各种项目/咪咕/assets/附件5.咪咕VPN使用说明.docx
Normal file
BIN
各种项目/咪咕/assets/附件5.咪咕VPN使用说明.docx
Normal file
Binary file not shown.
Reference in New Issue
Block a user