整理sql

This commit is contained in:
xxq250 2024-07-18 16:03:46 +08:00
parent 2028adb282
commit a541037bbd
12 changed files with 98 additions and 9312 deletions

View File

@ -0,0 +1,88 @@
/*
Navicat Premium Data Transfer
Source Server : 172.20.32.202-
Source Server Type : MySQL
Source Server Version : 50742 (5.7.42)
Source Host : 172.20.32.202:3306
Source Schema : gitea_hat
Target Server Type : MySQL
Target Server Version : 50742 (5.7.42)
File Encoding : 65001
Date: 18/07/2024 15:56:13
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`lower_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`full_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`keep_email_private` tinyint(1) NULL DEFAULT NULL,
`email_notifications_preference` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'enabled',
`passwd` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`passwd_hash_algo` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'argon2',
`must_change_password` tinyint(1) NOT NULL DEFAULT 0,
`login_type` int(11) NULL DEFAULT NULL,
`login_source` bigint(20) NOT NULL DEFAULT 0,
`login_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`type` int(11) NULL DEFAULT NULL,
`location` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`website` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`rands` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`salt` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`language` varchar(5) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`created_unix` bigint(20) NULL DEFAULT NULL,
`updated_unix` bigint(20) NULL DEFAULT NULL,
`last_login_unix` bigint(20) NULL DEFAULT NULL,
`last_repo_visibility` tinyint(1) NULL DEFAULT NULL,
`max_repo_creation` int(11) NOT NULL DEFAULT -1,
`is_active` tinyint(1) NULL DEFAULT NULL,
`is_admin` tinyint(1) NULL DEFAULT NULL,
`is_restricted` tinyint(1) NOT NULL DEFAULT 0,
`allow_git_hook` tinyint(1) NULL DEFAULT NULL,
`allow_import_local` tinyint(1) NULL DEFAULT NULL,
`allow_create_organization` tinyint(1) NULL DEFAULT 1,
`prohibit_login` tinyint(1) NOT NULL DEFAULT 0,
`avatar` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`avatar_email` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`use_custom_avatar` tinyint(1) NULL DEFAULT NULL,
`num_followers` int(11) NULL DEFAULT NULL,
`num_following` int(11) NOT NULL DEFAULT 0,
`num_stars` int(11) NULL DEFAULT NULL,
`num_repos` int(11) NULL DEFAULT NULL,
`num_teams` int(11) NULL DEFAULT NULL,
`num_members` int(11) NULL DEFAULT NULL,
`visibility` int(11) NOT NULL DEFAULT 0,
`repo_admin_change_team_access` tinyint(1) NOT NULL DEFAULT 0,
`diff_view_style` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
`theme` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '',
`keep_activity_private` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `UQE_user_name`(`name`) USING BTREE,
UNIQUE INDEX `UQE_user_lower_name`(`lower_name`) USING BTREE,
INDEX `IDX_user_last_login_unix`(`last_login_unix`) USING BTREE,
INDEX `IDX_user_is_active`(`is_active`) USING BTREE,
INDEX `IDX_user_created_unix`(`created_unix`) USING BTREE,
INDEX `IDX_user_updated_unix`(`updated_unix`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 261 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of user
-- ----------------------------
INSERT INTO `user` VALUES (1, 'root', 'root', '', 'admin@gitlink.org.cn', 0, 'enabled', 'b5819220e8b325c2a46875e758089f86657951f4cab18344a92a6f599439ef2ec92073129d6103ef6aa367f9cdef14d85e47', 'pbkdf2$50000$50', 0, 0, 0, '', 0, '', '', 'aa8eef377aa9b89b1a29eb3db00d08e1', '3d66f890cd095b6a0759baa77001b6e9', 'zh-CN', '', 1701153981, 1718779641, 1718779641, 0, -1, 1, 1, 0, 0, 0, 1, 0, '', 'admin@gitlink.org.cn', 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 'auto', 0);
INSERT INTO `user` VALUES (100, 'innov', 'innov', '', 'innov@forge.com', 0, 'enabled', 'c8014c065c753440d26f9ab9659064ae03142a943ee23112e64108268dab4285f15b8de427e80b431a08392ef361a39d2204', 'pbkdf2$50000$50', 0, 1, 0, 'innov', 0, '', '', '48e904f80ace4f923aa1d865dc9f1bf8', '9b709e9915857b4d168faa5300e407e9', 'zh-CN', '', 1702868176, 1721121437, 1719281030, 0, -1, 1, 1, 0, 0, 0, 1, 0, '', 'innov@forge.com', 0, 0, 0, 0, 16, 0, 0, 0, 0, '', 'auto', 0);
INSERT INTO `access_token` (`id`, `uid`, `name`, `token_hash`, `token_salt`, `token_last_eight`, `scope`, `created_unix`, `updated_unix`) VALUES (4, 100, 'innov-212b74e073fb', '6674e75e060e245134e7c6c034fa7e36f88865227e16dbf6e75cd31d1fb1153cb48882c59745193b1bb74a4ad4e8f23045c9', '3TAY460XRj', 'e828fce0', 'all', 1709712534, 1709771220);
SET FOREIGN_KEY_CHECKS = 1;

View File

@ -19,6 +19,8 @@
-- Table structure for table `action_node_inputs`
--
use forgeplus;
DROP TABLE IF EXISTS `action_node_inputs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;

File diff suppressed because one or more lines are too long

View File

@ -1,277 +0,0 @@
/*
Navicat Premium Data Transfer
Source Server : 172.20.32.202-
Source Server Type : MySQL
Source Server Version : 50742 (5.7.42)
Source Host : 172.20.32.202:3306
Source Schema : forgeplus
Target Server Type : MySQL
Target Server Version : 50742 (5.7.42)
File Encoding : 65001
Date: 05/07/2024 10:35:17
*/
use forgeplus;
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for schema_migrations
-- ----------------------------
DROP TABLE IF EXISTS `schema_migrations`;
CREATE TABLE `schema_migrations` (
`version` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
UNIQUE INDEX `unique_schema_migrations`(`version`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = DYNAMIC;
-- ----------------------------
-- Records of schema_migrations
-- ----------------------------
INSERT INTO `schema_migrations` VALUES ('20191212110933');
INSERT INTO `schema_migrations` VALUES ('20191213091840');
INSERT INTO `schema_migrations` VALUES ('20191218015959');
INSERT INTO `schema_migrations` VALUES ('20191218022602');
INSERT INTO `schema_migrations` VALUES ('20191218023731');
INSERT INTO `schema_migrations` VALUES ('20191218024615');
INSERT INTO `schema_migrations` VALUES ('20191218092812');
INSERT INTO `schema_migrations` VALUES ('20191218105120');
INSERT INTO `schema_migrations` VALUES ('20191220085002');
INSERT INTO `schema_migrations` VALUES ('20191220085133');
INSERT INTO `schema_migrations` VALUES ('20191220085352');
INSERT INTO `schema_migrations` VALUES ('20191220092618');
INSERT INTO `schema_migrations` VALUES ('20191223031855');
INSERT INTO `schema_migrations` VALUES ('20191223063139');
INSERT INTO `schema_migrations` VALUES ('20191224064403');
INSERT INTO `schema_migrations` VALUES ('20191225073843');
INSERT INTO `schema_migrations` VALUES ('20191225125634');
INSERT INTO `schema_migrations` VALUES ('20191227013202');
INSERT INTO `schema_migrations` VALUES ('20191227084951');
INSERT INTO `schema_migrations` VALUES ('20191227090611');
INSERT INTO `schema_migrations` VALUES ('20191227105755');
INSERT INTO `schema_migrations` VALUES ('20191227140150');
INSERT INTO `schema_migrations` VALUES ('20191227162744');
INSERT INTO `schema_migrations` VALUES ('20200103062707');
INSERT INTO `schema_migrations` VALUES ('20200103062807');
INSERT INTO `schema_migrations` VALUES ('20200103113839');
INSERT INTO `schema_migrations` VALUES ('20200106022157');
INSERT INTO `schema_migrations` VALUES ('20200106022235');
INSERT INTO `schema_migrations` VALUES ('20200106082806');
INSERT INTO `schema_migrations` VALUES ('20200106093141');
INSERT INTO `schema_migrations` VALUES ('20200108015358');
INSERT INTO `schema_migrations` VALUES ('20200108025756');
INSERT INTO `schema_migrations` VALUES ('20200108031646');
INSERT INTO `schema_migrations` VALUES ('20200108071622');
INSERT INTO `schema_migrations` VALUES ('20200108082955');
INSERT INTO `schema_migrations` VALUES ('20200117032213');
INSERT INTO `schema_migrations` VALUES ('20200210071320');
INSERT INTO `schema_migrations` VALUES ('20200210074241');
INSERT INTO `schema_migrations` VALUES ('20200210111249');
INSERT INTO `schema_migrations` VALUES ('20200210111308');
INSERT INTO `schema_migrations` VALUES ('20200212055807');
INSERT INTO `schema_migrations` VALUES ('20200213090203');
INSERT INTO `schema_migrations` VALUES ('20200213094050');
INSERT INTO `schema_migrations` VALUES ('20200220063545');
INSERT INTO `schema_migrations` VALUES ('20200220075242');
INSERT INTO `schema_migrations` VALUES ('20200317160914');
INSERT INTO `schema_migrations` VALUES ('20200416154625');
INSERT INTO `schema_migrations` VALUES ('20200417094626');
INSERT INTO `schema_migrations` VALUES ('20200421092002');
INSERT INTO `schema_migrations` VALUES ('20200429085544');
INSERT INTO `schema_migrations` VALUES ('20200513080857');
INSERT INTO `schema_migrations` VALUES ('20200515024117');
INSERT INTO `schema_migrations` VALUES ('20200515080705');
INSERT INTO `schema_migrations` VALUES ('20200515082628');
INSERT INTO `schema_migrations` VALUES ('20200518065521');
INSERT INTO `schema_migrations` VALUES ('20200518081445');
INSERT INTO `schema_migrations` VALUES ('20200518090640');
INSERT INTO `schema_migrations` VALUES ('20200518092612');
INSERT INTO `schema_migrations` VALUES ('20200521090205');
INSERT INTO `schema_migrations` VALUES ('20200521093338');
INSERT INTO `schema_migrations` VALUES ('20200525021613');
INSERT INTO `schema_migrations` VALUES ('20200525054200');
INSERT INTO `schema_migrations` VALUES ('20200609100407');
INSERT INTO `schema_migrations` VALUES ('20200610071625');
INSERT INTO `schema_migrations` VALUES ('20200629020618');
INSERT INTO `schema_migrations` VALUES ('20200629081111');
INSERT INTO `schema_migrations` VALUES ('20200708114354');
INSERT INTO `schema_migrations` VALUES ('20200709061656');
INSERT INTO `schema_migrations` VALUES ('20200710124116');
INSERT INTO `schema_migrations` VALUES ('20200713150706');
INSERT INTO `schema_migrations` VALUES ('20200714014513');
INSERT INTO `schema_migrations` VALUES ('20200714032759');
INSERT INTO `schema_migrations` VALUES ('20200714072948');
INSERT INTO `schema_migrations` VALUES ('20200714112206');
INSERT INTO `schema_migrations` VALUES ('20200715075831');
INSERT INTO `schema_migrations` VALUES ('20200715152711');
INSERT INTO `schema_migrations` VALUES ('20200716060536');
INSERT INTO `schema_migrations` VALUES ('20200717015216');
INSERT INTO `schema_migrations` VALUES ('20200731073851');
INSERT INTO `schema_migrations` VALUES ('20200813144941');
INSERT INTO `schema_migrations` VALUES ('20200813150315');
INSERT INTO `schema_migrations` VALUES ('20200828021007');
INSERT INTO `schema_migrations` VALUES ('20200828022021');
INSERT INTO `schema_migrations` VALUES ('20200904074907');
INSERT INTO `schema_migrations` VALUES ('20200925090122');
INSERT INTO `schema_migrations` VALUES ('20200927023922');
INSERT INTO `schema_migrations` VALUES ('20200929062837');
INSERT INTO `schema_migrations` VALUES ('20201004034434');
INSERT INTO `schema_migrations` VALUES ('20201004070431');
INSERT INTO `schema_migrations` VALUES ('20201019082617');
INSERT INTO `schema_migrations` VALUES ('20201019104433');
INSERT INTO `schema_migrations` VALUES ('20201020071758');
INSERT INTO `schema_migrations` VALUES ('20201020083709');
INSERT INTO `schema_migrations` VALUES ('20201020093834');
INSERT INTO `schema_migrations` VALUES ('20201021031915');
INSERT INTO `schema_migrations` VALUES ('20201021033117');
INSERT INTO `schema_migrations` VALUES ('20201021041202');
INSERT INTO `schema_migrations` VALUES ('20201021070524');
INSERT INTO `schema_migrations` VALUES ('20201021080638');
INSERT INTO `schema_migrations` VALUES ('20201022164823');
INSERT INTO `schema_migrations` VALUES ('20201023025821');
INSERT INTO `schema_migrations` VALUES ('20201104034658');
INSERT INTO `schema_migrations` VALUES ('20201130081039');
INSERT INTO `schema_migrations` VALUES ('20201230054355');
INSERT INTO `schema_migrations` VALUES ('20201230070048');
INSERT INTO `schema_migrations` VALUES ('20210108015318');
INSERT INTO `schema_migrations` VALUES ('20210108055023');
INSERT INTO `schema_migrations` VALUES ('20210108062016');
INSERT INTO `schema_migrations` VALUES ('20210111013512');
INSERT INTO `schema_migrations` VALUES ('20210111065934');
INSERT INTO `schema_migrations` VALUES ('20210111065954');
INSERT INTO `schema_migrations` VALUES ('20210111093008');
INSERT INTO `schema_migrations` VALUES ('20210111093016');
INSERT INTO `schema_migrations` VALUES ('20210111093024');
INSERT INTO `schema_migrations` VALUES ('20210111093200');
INSERT INTO `schema_migrations` VALUES ('20210112053516');
INSERT INTO `schema_migrations` VALUES ('20210118011710');
INSERT INTO `schema_migrations` VALUES ('20210119025745');
INSERT INTO `schema_migrations` VALUES ('20210120081821');
INSERT INTO `schema_migrations` VALUES ('20210122052755');
INSERT INTO `schema_migrations` VALUES ('20210126071814');
INSERT INTO `schema_migrations` VALUES ('20210202034128');
INSERT INTO `schema_migrations` VALUES ('20210202100517');
INSERT INTO `schema_migrations` VALUES ('20210315093350');
INSERT INTO `schema_migrations` VALUES ('20210317012035');
INSERT INTO `schema_migrations` VALUES ('20210322084619');
INSERT INTO `schema_migrations` VALUES ('20210408070123');
INSERT INTO `schema_migrations` VALUES ('20210419023310');
INSERT INTO `schema_migrations` VALUES ('20210421081736');
INSERT INTO `schema_migrations` VALUES ('20210425032825');
INSERT INTO `schema_migrations` VALUES ('20210429095016');
INSERT INTO `schema_migrations` VALUES ('20210429100619');
INSERT INTO `schema_migrations` VALUES ('20210514024444');
INSERT INTO `schema_migrations` VALUES ('20210527024043');
INSERT INTO `schema_migrations` VALUES ('20210531100250');
INSERT INTO `schema_migrations` VALUES ('20210603020327');
INSERT INTO `schema_migrations` VALUES ('20210609072904');
INSERT INTO `schema_migrations` VALUES ('20210615063727');
INSERT INTO `schema_migrations` VALUES ('20210617081433');
INSERT INTO `schema_migrations` VALUES ('20210621090005');
INSERT INTO `schema_migrations` VALUES ('20210624101058');
INSERT INTO `schema_migrations` VALUES ('20210831014412');
INSERT INTO `schema_migrations` VALUES ('20210909030759');
INSERT INTO `schema_migrations` VALUES ('20210914064456');
INSERT INTO `schema_migrations` VALUES ('20210924021337');
INSERT INTO `schema_migrations` VALUES ('20210930025555');
INSERT INTO `schema_migrations` VALUES ('20211012060724');
INSERT INTO `schema_migrations` VALUES ('20211012060837');
INSERT INTO `schema_migrations` VALUES ('20211013081221');
INSERT INTO `schema_migrations` VALUES ('20211013081713');
INSERT INTO `schema_migrations` VALUES ('20211013090556');
INSERT INTO `schema_migrations` VALUES ('20211027032626');
INSERT INTO `schema_migrations` VALUES ('20211028065339');
INSERT INTO `schema_migrations` VALUES ('20211102065736');
INSERT INTO `schema_migrations` VALUES ('20211115014133');
INSERT INTO `schema_migrations` VALUES ('20211119135526');
INSERT INTO `schema_migrations` VALUES ('20211129025810');
INSERT INTO `schema_migrations` VALUES ('20211201091905');
INSERT INTO `schema_migrations` VALUES ('20211222015006');
INSERT INTO `schema_migrations` VALUES ('20220331031530');
INSERT INTO `schema_migrations` VALUES ('20220428015313');
INSERT INTO `schema_migrations` VALUES ('20220506083813');
INSERT INTO `schema_migrations` VALUES ('20220513061129');
INSERT INTO `schema_migrations` VALUES ('20220614070028');
INSERT INTO `schema_migrations` VALUES ('20220614081950');
INSERT INTO `schema_migrations` VALUES ('20220616040105');
INSERT INTO `schema_migrations` VALUES ('20220629054645');
INSERT INTO `schema_migrations` VALUES ('20220711061848');
INSERT INTO `schema_migrations` VALUES ('20220721034359');
INSERT INTO `schema_migrations` VALUES ('20220721034618');
INSERT INTO `schema_migrations` VALUES ('20220725020217');
INSERT INTO `schema_migrations` VALUES ('20220725020443');
INSERT INTO `schema_migrations` VALUES ('20220726090342');
INSERT INTO `schema_migrations` VALUES ('20220727063638');
INSERT INTO `schema_migrations` VALUES ('20220728022339');
INSERT INTO `schema_migrations` VALUES ('20220728063123');
INSERT INTO `schema_migrations` VALUES ('20220826034622');
INSERT INTO `schema_migrations` VALUES ('20220923012923');
INSERT INTO `schema_migrations` VALUES ('20221108024322');
INSERT INTO `schema_migrations` VALUES ('20221108100538');
INSERT INTO `schema_migrations` VALUES ('20221115032403');
INSERT INTO `schema_migrations` VALUES ('20221123023450');
INSERT INTO `schema_migrations` VALUES ('20221124111351');
INSERT INTO `schema_migrations` VALUES ('20221207128751');
INSERT INTO `schema_migrations` VALUES ('20230207091507');
INSERT INTO `schema_migrations` VALUES ('20230208023811');
INSERT INTO `schema_migrations` VALUES ('20230214000021');
INSERT INTO `schema_migrations` VALUES ('20230223065106');
INSERT INTO `schema_migrations` VALUES ('20230302063013');
INSERT INTO `schema_migrations` VALUES ('20230309095515');
INSERT INTO `schema_migrations` VALUES ('20230321022108');
INSERT INTO `schema_migrations` VALUES ('20230413121129');
INSERT INTO `schema_migrations` VALUES ('20230417032154');
INSERT INTO `schema_migrations` VALUES ('20230417141788');
INSERT INTO `schema_migrations` VALUES ('20230420031926');
INSERT INTO `schema_migrations` VALUES ('20230420092835');
INSERT INTO `schema_migrations` VALUES ('20230518012718');
INSERT INTO `schema_migrations` VALUES ('20230520133729');
INSERT INTO `schema_migrations` VALUES ('20230530141227');
INSERT INTO `schema_migrations` VALUES ('20230530353459');
INSERT INTO `schema_migrations` VALUES ('20230612020506');
INSERT INTO `schema_migrations` VALUES ('20230612031416');
INSERT INTO `schema_migrations` VALUES ('20230612031448');
INSERT INTO `schema_migrations` VALUES ('20230613082850');
INSERT INTO `schema_migrations` VALUES ('20230620030511');
INSERT INTO `schema_migrations` VALUES ('20230725020157');
INSERT INTO `schema_migrations` VALUES ('20230725060833');
INSERT INTO `schema_migrations` VALUES ('20230727083929');
INSERT INTO `schema_migrations` VALUES ('20230823071725');
INSERT INTO `schema_migrations` VALUES ('20230901023417');
INSERT INTO `schema_migrations` VALUES ('20231010030020');
INSERT INTO `schema_migrations` VALUES ('20231018034251');
INSERT INTO `schema_migrations` VALUES ('20231031070603');
INSERT INTO `schema_migrations` VALUES ('20231101090823');
INSERT INTO `schema_migrations` VALUES ('20231107003833');
INSERT INTO `schema_migrations` VALUES ('20231107072541');
INSERT INTO `schema_migrations` VALUES ('20231108024716');
INSERT INTO `schema_migrations` VALUES ('20231114023928');
INSERT INTO `schema_migrations` VALUES ('20231115126452');
INSERT INTO `schema_migrations` VALUES ('20231121084405');
INSERT INTO `schema_migrations` VALUES ('20231212012107');
INSERT INTO `schema_migrations` VALUES ('20231219020521');
INSERT INTO `schema_migrations` VALUES ('20240104053819');
INSERT INTO `schema_migrations` VALUES ('202401111014309');
INSERT INTO `schema_migrations` VALUES ('202401321314370');
INSERT INTO `schema_migrations` VALUES ('202401321314371');
INSERT INTO `schema_migrations` VALUES ('20240401030707');
INSERT INTO `schema_migrations` VALUES ('20240403015938');
INSERT INTO `schema_migrations` VALUES ('20240408010101');
INSERT INTO `schema_migrations` VALUES ('20240408010102');
INSERT INTO `schema_migrations` VALUES ('20240408010103');
INSERT INTO `schema_migrations` VALUES ('20240408010213');
INSERT INTO `schema_migrations` VALUES ('20240408010227');
INSERT INTO `schema_migrations` VALUES ('20240408010233');
INSERT INTO `schema_migrations` VALUES ('20240415014011');
INSERT INTO `schema_migrations` VALUES ('20240415015216');
INSERT INTO `schema_migrations` VALUES ('20240417025003');
INSERT INTO `schema_migrations` VALUES ('20240424085125');
INSERT INTO `schema_migrations` VALUES ('20240429070012');
INSERT INTO `schema_migrations` VALUES ('20240514121788');
INSERT INTO `schema_migrations` VALUES ('20240522015212');
INSERT INTO `schema_migrations` VALUES ('20240620060536');
SET FOREIGN_KEY_CHECKS = 1;

View File

@ -1,6 +0,0 @@
use gitea_hat;
INSERT INTO `gitea_hat`.`user` (`id`, `lower_name`, `name`, `full_name`, `email`, `keep_email_private`, `email_notifications_preference`, `passwd`, `passwd_hash_algo`, `must_change_password`, `login_type`, `login_source`, `login_name`, `type`, `location`, `website`, `rands`, `salt`, `language`, `description`, `created_unix`, `updated_unix`, `last_login_unix`, `last_repo_visibility`, `max_repo_creation`, `is_active`, `is_admin`, `is_restricted`, `allow_git_hook`, `allow_import_local`, `allow_create_organization`, `prohibit_login`, `avatar`, `avatar_email`, `use_custom_avatar`, `num_followers`, `num_following`, `num_stars`, `num_repos`, `num_teams`, `num_members`, `visibility`, `repo_admin_change_team_access`, `diff_view_style`, `theme`, `keep_activity_private`) VALUES (1, 'root', 'root', '', 'admin@gitlink.org.cn', 0, 'enabled', 'b5819220e8b325c2a46875e758089f86657951f4cab18344a92a6f599439ef2ec92073129d6103ef6aa367f9cdef14d85e47', 'pbkdf2$50000$50', 0, 0, 0, '', 0, '', '', 'aa8eef377aa9b89b1a29eb3db00d08e1', '3d66f890cd095b6a0759baa77001b6e9', 'zh-CN', '', 1701153981, 1703209590, 1703209590, 0, -1, 1, 1, 0, 0, 0, 1, 0, '', 'admin@gitlink.org.cn', 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 'auto', 0);
INSERT INTO `gitea_hat`.`user` (`id`, `lower_name`, `name`, `full_name`, `email`, `keep_email_private`, `email_notifications_preference`, `passwd`, `passwd_hash_algo`, `must_change_password`, `login_type`, `login_source`, `login_name`, `type`, `location`, `website`, `rands`, `salt`, `language`, `description`, `created_unix`, `updated_unix`, `last_login_unix`, `last_repo_visibility`, `max_repo_creation`, `is_active`, `is_admin`, `is_restricted`, `allow_git_hook`, `allow_import_local`, `allow_create_organization`, `prohibit_login`, `avatar`, `avatar_email`, `use_custom_avatar`, `num_followers`, `num_following`, `num_stars`, `num_repos`, `num_teams`, `num_members`, `visibility`, `repo_admin_change_team_access`, `diff_view_style`, `theme`, `keep_activity_private`) VALUES (100, 'innov', 'innov', '', 'innov@forge.com', 0, 'enabled', 'c8014c065c753440d26f9ab9659064ae03142a943ee23112e64108268dab4285f15b8de427e80b431a08392ef361a39d2204', 'pbkdf2$50000$50', 0, 1, 0, 'innov', 0, '', '', '48e904f80ace4f923aa1d865dc9f1bf8', '9b709e9915857b4d168faa5300e407e9', 'zh-CN', '', 1702868176, 1703570876, 1703570876, 0, -1, 1, 1, 0, 0, 0, 1, 0, '', 'innov@forge.com', 0, 0, 0, 0, 3, 0, 0, 0, 0, '', 'auto', 0);
INSERT INTO `gitea_hat`.`access_token` (`id`, `uid`, `name`, `token_hash`, `token_salt`, `token_last_eight`, `scope`, `created_unix`, `updated_unix`) VALUES (4, 100, 'innov-212b74e073fb', '6674e75e060e245134e7c6c034fa7e36f88865227e16dbf6e75cd31d1fb1153cb48882c59745193b1bb74a4ad4e8f23045c9', '3TAY460XRj', 'e828fce0', 'all', 1709712534, 1709771220);

View File

@ -1,84 +0,0 @@
/*
Navicat Premium Data Transfer
Source Server : forgeplus-
Source Server Type : MySQL
Source Server Version : 50646
Source Host : 10.9.60.75:3306
Source Schema : forgeplus
Target Server Type : MySQL
Target Server Version : 50646
File Encoding : 65001
Date: 09/07/2024 17:16:34
*/
use forgeplus;
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for project_categories
-- ----------------------------
DROP TABLE IF EXISTS `project_categories`;
CREATE TABLE `project_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`position` int(11) DEFAULT NULL,
`projects_count` int(11) DEFAULT '0',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
`ancestry` varchar(255) DEFAULT NULL,
`pinned_index` int(11) DEFAULT '0',
`private_projects_count` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `index_project_categories_on_ancestry` (`ancestry`),
KEY `index_project_categories_on_id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of project_categories
-- ----------------------------
BEGIN;
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (1, '游戏/娱乐', 1, 247, '2019-11-13 18:58:42', '2021-10-29 09:41:58', NULL, 50, 10);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (2, '区块链', 2, 103, '2019-11-13 18:58:42', '2021-10-29 09:43:14', NULL, 43, 16);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (3, '企业应用', 3, 132, '2019-11-13 18:58:42', '2021-10-29 09:42:47', NULL, 45, 8);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (4, '人工智能', 4, 37274, '2019-11-13 18:58:42', '2021-10-29 09:39:46', NULL, 70, 14);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (5, '量子计算', 5, 2, '2019-11-13 18:58:42', '2019-11-13 18:58:42', NULL, 0, 0);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (6, '智慧医疗', 6, 14, '2019-11-13 18:58:42', '2019-11-13 18:58:42', NULL, 0, 1);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (7, '自动驾驶', 7, 1328, '2019-11-13 18:58:42', '2019-11-13 18:58:42', NULL, 0, 1);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (8, '插件和扩展', 8, 7217, '2019-11-13 18:58:42', '2021-10-29 09:41:10', NULL, 55, -6);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (9, '物联网', 0, 233, '2020-05-25 05:46:56', '2021-10-29 09:43:35', NULL, 40, -2);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (10, 'DevOps/运维/网管', 0, 74, '2020-08-15 11:56:15', '2021-10-29 09:43:57', NULL, 37, 1);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (11, '数据库', 0, 66877, '2020-08-15 11:56:22', '2022-03-30 12:24:42', NULL, 85, 0);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (12, '程序开发', NULL, 978031, '2020-10-19 16:55:21', '2021-10-29 09:35:41', NULL, 100, 7);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (13, '云计算和大数据', NULL, 43470, '2020-10-19 16:56:48', '2021-10-29 09:39:18', NULL, 75, 0);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (14, 'Web应用开发', NULL, 101360, '2020-10-19 16:56:48', '2021-10-29 09:37:02', NULL, 90, 14);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (15, '其它', NULL, 26030, '2020-10-19 16:57:17', '2024-04-22 00:44:32', NULL, 0, 9);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (16, '开发工具', NULL, 23478, '2020-10-19 17:36:39', '2021-10-29 09:40:16', NULL, 65, 5);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (17, '操作系统', NULL, 54746, '2020-10-19 17:38:51', '2022-03-30 12:24:54', NULL, 80, 0);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (18, '应用工具', NULL, 62082, '2020-10-21 15:07:33', '2021-10-29 09:40:40', NULL, 60, 3);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (19, '手机/移动开发', 8, 42, '2020-10-22 16:26:56', '2021-10-29 09:44:38', NULL, 35, -7);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (20, '程序设计', NULL, 1267, '2020-12-21 08:36:51', '2021-10-29 09:41:36', NULL, 53, 2);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (21, '运维与测试', NULL, 138, '2020-12-21 08:36:51', '2021-10-29 09:42:20', NULL, 47, 3);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (22, '云计算', NULL, 98, '2021-03-19 10:22:26', '2021-10-29 09:45:17', NULL, 25, 2);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (23, '计算机体系结 构', NULL, 10, '2021-03-19 10:22:29', '2021-03-19 10:22:29', NULL, 0, 0);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (24, '数据处理', NULL, 49, '2021-03-19 10:22:29', '2021-03-19 10:22:29', NULL, 0, 8);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (25, '数据可视化', NULL, 22, '2021-03-19 10:22:30', '2021-03-19 10:22:30', NULL, 0, 1);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (26, '数据查询', NULL, 8, '2021-03-19 10:22:30', '2021-03-19 10:22:30', NULL, 0, 2);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (27, '数据支持', NULL, 6, '2021-03-19 10:22:30', '2021-03-19 10:22:30', NULL, 0, 3);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (28, '程序验证', NULL, 6, '2021-03-19 10:22:32', '2021-03-19 10:22:32', NULL, 0, 1);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (29, '网络虚拟化', NULL, 1, '2021-03-19 10:22:33', '2021-03-19 10:22:33', NULL, 0, 0);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (30, '大数据', NULL, 21, '2021-03-19 10:22:33', '2021-03-19 10:22:33', NULL, 0, 1);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (31, '自然语言处理', NULL, 11, '2021-03-19 10:22:33', '2021-03-19 10:22:33', NULL, 0, 0);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (32, '深度学习', NULL, 73, '2021-03-19 10:22:34', '2021-03-19 10:22:34', NULL, 0, 2);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (34, '数据存储', NULL, 23, '2021-03-19 10:22:34', '2021-03-19 10:22:34', NULL, 0, 4);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (35, '数据流通', NULL, 1, '2021-03-19 10:22:35', '2021-03-19 10:22:35', NULL, 0, 0);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (36, '视频压缩', NULL, 1, '2021-03-19 10:22:35', '2021-03-19 10:22:35', NULL, 0, 0);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (37, '云原生', NULL, 82, '2021-03-19 10:22:35', '2021-10-29 09:44:55', NULL, 30, 0);
INSERT INTO `project_categories` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`, `ancestry`, `pinned_index`, `private_projects_count`) VALUES (38, '云存储', NULL, 4, '2021-03-19 10:22:36', '2021-03-19 10:22:36', NULL, 0, 0);
COMMIT;
SET FOREIGN_KEY_CHECKS = 1;

View File

@ -1,220 +0,0 @@
/*
Navicat Premium Data Transfer
Source Server : forgeplus-
Source Server Type : MySQL
Source Server Version : 50646
Source Host : 10.9.60.75:3306
Source Schema : forgeplus
Target Server Type : MySQL
Target Server Version : 50646
File Encoding : 65001
Date: 09/07/2024 17:16:54
*/
use forgeplus;
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for project_languages
-- ----------------------------
DROP TABLE IF EXISTS `project_languages`;
CREATE TABLE `project_languages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`position` int(11) DEFAULT NULL,
`projects_count` int(11) DEFAULT '0',
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `index_project_languages_on_id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=178 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of project_languages
-- ----------------------------
BEGIN;
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (1, 'Ruby', NULL, 2230, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (2, 'C', NULL, 575, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (3, 'C#', NULL, 5995, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (4, 'C++', NULL, 727, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (5, 'HTML', NULL, 221, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (6, 'Haml', NULL, 1, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (7, 'CSS', NULL, 49, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (8, 'JavaScript', NULL, 50914, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (9, 'Python', NULL, 12256, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (10, 'PHP', NULL, 7643, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (11, 'Java', NULL, 250573, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (12, 'JSON', NULL, 9, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (13, 'JSX', NULL, 37, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (14, 'Lex', NULL, 1, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (15, 'Shell', NULL, 54254, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (16, 'Objective-C', NULL, 13, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (17, 'Cycript', NULL, 0, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (18, 'Clojure', NULL, 1, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (19, 'Go', NULL, 1082, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (20, 'Grace', NULL, 0, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (21, 'Gradle', NULL, 0, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (22, 'GraphQL', NULL, 0, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (23, 'Dart', NULL, 17, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (24, 'Elixir', NULL, 0, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (25, 'Erlang', NULL, 7, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (26, 'Perl', NULL, 2, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (27, 'R', NULL, 2924, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (28, 'Reason', NULL, 0, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (29, 'Sass', NULL, 2, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (30, 'Slice', NULL, 0, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (31, 'SVG', NULL, 5, '2020-03-09 04:09:34', '2020-03-09 04:09:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (32, 'Rust', 0, 179, '2020-08-15 11:54:01', '2020-08-15 11:54:01');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (33, '其他', 0, 28, '2020-08-15 11:54:08', '2020-08-15 11:54:08');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (34, 'Python3.6', NULL, 382784, '2020-10-19 16:55:21', '2020-10-19 16:55:21');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (35, 'C/C++', NULL, 441206, '2020-10-19 16:55:21', '2020-10-19 16:55:21');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (36, 'Python2.7', NULL, 9881, '2020-10-19 16:56:29', '2020-10-19 16:56:29');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (37, 'Docker', NULL, 2612, '2020-10-19 16:56:48', '2020-10-19 16:56:48');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (38, 'MachineLearning', NULL, 32312, '2020-10-19 16:57:03', '2020-10-19 16:57:03');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (39, 'Verilog', NULL, 11885, '2020-10-19 16:57:19', '2020-10-19 16:57:19');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (40, 'MySQL', NULL, 36424, '2020-10-19 17:12:09', '2020-10-19 17:12:09');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (41, 'Python3-turtle', NULL, 2241, '2020-10-19 17:21:26', '2020-10-19 17:21:26');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (42, 'Hadoop', NULL, 14272, '2020-10-19 17:33:39', '2020-10-19 17:33:39');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (43, 'Android', NULL, 3702, '2020-10-19 17:36:39', '2020-10-19 17:36:39');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (44, 'JavaWeb', NULL, 9225, '2020-10-19 17:40:58', '2020-10-19 17:40:58');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (45, 'Matlab', NULL, 4242, '2020-10-19 17:41:15', '2020-10-19 17:41:15');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (46, 'Git', NULL, 2397, '2020-10-19 17:52:18', '2020-10-19 17:52:18');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (47, 'Kotlin', NULL, 35, '2020-10-19 18:03:49', '2020-10-19 18:03:49');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (48, 'Spark', NULL, 4014, '2020-10-19 18:07:21', '2020-10-19 18:07:21');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (49, 'SQLite3', NULL, 340, '2020-10-19 18:08:13', '2020-10-19 18:08:13');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (50, 'Oracle', NULL, 355, '2020-10-19 18:22:42', '2020-10-19 18:22:42');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (51, 'Swift', NULL, 185, '2020-10-19 18:25:14', '2020-10-19 18:25:14');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (52, 'SQLServer', NULL, 27685, '2020-10-19 19:22:03', '2020-10-19 19:22:03');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (53, 'Ubuntu16-env', NULL, 4874, '2020-10-19 19:29:20', '2020-10-19 19:29:20');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (54, 'Mongo', NULL, 4468, '2020-10-19 19:34:57', '2020-10-19 19:34:57');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (55, 'Python3-competition', NULL, 4791, '2020-10-19 20:51:08', '2020-10-19 20:51:08');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (56, 'Hbase', NULL, 2252, '2020-10-19 22:41:58', '2020-10-19 22:41:58');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (57, 'PostgreSql', NULL, 263, '2020-10-19 22:53:03', '2020-10-19 22:53:03');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (58, 'Hbase-simple', NULL, 6961, '2020-10-20 07:56:46', '2020-10-20 07:56:46');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (59, 'Nasm', NULL, 1672, '2020-10-20 15:40:13', '2020-10-20 15:40:13');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (60, 'Hive', NULL, 5618, '2020-10-20 15:42:03', '2020-10-20 15:42:03');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (61, 'Python-Gpu', NULL, 1025, '2020-10-20 15:46:14', '2020-10-20 15:46:14');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (62, 'Kafka', NULL, 1359, '2020-10-20 16:10:26', '2020-10-20 16:10:26');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (63, 'GPU-C/C++', NULL, 1438, '2020-10-20 16:56:44', '2020-10-20 16:56:44');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (64, 'VSCode/VNC', NULL, 915, '2020-10-20 17:01:58', '2020-10-20 17:01:58');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (65, 'Flink', NULL, 56, '2020-10-20 17:06:49', '2020-10-20 17:06:49');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (66, '', NULL, 26, '2020-10-20 17:14:18', '2020-10-20 17:14:18');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (67, 'Hbase-finish', NULL, 199, '2020-10-20 17:28:13', '2020-10-20 17:28:13');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (68, 'Ubuntu16/VNC', NULL, 315, '2020-10-20 17:37:09', '2020-10-20 17:37:09');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (69, 'Sml', NULL, 26, '2020-10-20 17:48:00', '2020-10-20 17:48:00');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (70, 'Verilog/VNC', NULL, 4156, '2020-10-20 18:03:25', '2020-10-20 18:03:25');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (71, 'Cisco/VNC', NULL, 1244, '2020-10-20 18:46:55', '2020-10-20 18:46:55');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (72, 'Gns3/VNC', NULL, 1550, '2020-10-20 19:22:41', '2020-10-20 19:22:41');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (73, 'Perl5', NULL, 3, '2020-10-20 19:45:02', '2020-10-20 19:45:02');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (74, 'Python3/Jupyter', NULL, 251, '2020-10-20 20:00:06', '2020-10-20 20:00:06');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (75, 'Hbase2', NULL, 17, '2020-10-20 20:05:18', '2020-10-20 20:05:18');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (76, 'Fabric', NULL, 36, '2020-10-20 20:34:08', '2020-10-20 20:34:08');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (77, 'Ngspice', NULL, 108, '2020-10-20 21:14:01', '2020-10-20 21:14:01');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (78, 'Openjdk10/VNC', NULL, 49, '2020-10-20 21:26:00', '2020-10-20 21:26:00');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (79, 'Python3-torch1.4.0', NULL, 159, '2020-10-20 21:50:18', '2020-10-20 21:50:18');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (80, 'Android/VNC', NULL, 393, '2020-10-20 22:06:02', '2020-10-20 22:06:02');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (81, 'Python3-tensorflow2.1.0', NULL, 4, '2020-10-20 22:50:53', '2020-10-20 22:50:53');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (82, 'WPS/VNC', NULL, 31, '2020-10-20 22:57:58', '2020-10-20 22:57:58');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (83, 'Gimp/VNC', NULL, 9, '2020-10-20 22:57:59', '2020-10-20 22:57:59');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (84, 'C/C++/VNC', NULL, 103, '2020-10-20 23:40:16', '2020-10-20 23:40:16');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (85, 'python3-matplotlib2.2', NULL, 65, '2020-10-21 15:07:40', '2020-10-21 15:07:40');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (86, 'Python-GPU/VNC', NULL, 2, '2020-10-21 18:13:24', '2020-10-21 18:13:24');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (87, 'Python-GPU/Jupyter', NULL, 17, '2020-10-21 18:17:25', '2020-10-21 18:17:25');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (88, 'Paddlepaddle', NULL, 9, '2020-10-21 20:36:30', '2020-10-21 20:36:30');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (89, 'C+', NULL, 1, '2021-03-19 10:22:27', '2021-03-19 10:22:27');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (90, 'Scala', NULL, 9, '2021-03-19 10:22:34', '2021-03-19 10:22:34');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (91, 'Jittor', 0, 512, '2022-04-26 05:39:56', '2022-04-26 05:39:56');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (92, 'Stylus', NULL, 1, '2022-05-27 06:47:08', '2022-05-27 06:47:08');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (93, 'TeX', NULL, 6, '2022-05-27 06:47:09', '2022-05-27 06:47:09');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (94, 'Assembly', NULL, 3, '2022-05-27 06:47:12', '2022-05-27 06:47:12');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (95, 'Max', NULL, 1, '2022-07-08 06:21:59', '2022-07-08 06:21:59');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (96, 'Jupyter notebook', NULL, 58, '2022-07-08 07:40:12', '2022-07-08 07:40:12');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (97, 'Vue', NULL, 127, '2022-07-08 08:07:07', '2022-07-08 08:07:07');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (98, 'Makefile', NULL, 18, '2022-07-08 08:41:05', '2022-07-08 08:41:05');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (99, 'Sourcepawn', NULL, 10, '2022-07-08 08:57:35', '2022-07-08 08:57:35');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (100, 'Csv', NULL, 15, '2022-07-08 09:15:33', '2022-07-08 09:15:33');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (101, 'Markdown', NULL, 201, '2022-07-08 09:24:32', '2022-07-08 09:24:32');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (102, 'Yaml', NULL, 6, '2022-07-08 13:03:43', '2022-07-08 13:03:43');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (103, 'Typescript', NULL, 154, '2022-07-08 13:25:17', '2022-07-08 13:25:17');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (104, 'Jinja', NULL, 10, '2022-07-10 05:39:25', '2022-07-10 05:39:25');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (105, 'Text', NULL, 175, '2022-07-10 10:07:19', '2022-07-10 10:07:19');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (106, 'Tcl', NULL, 3, '2022-07-12 09:31:38', '2022-07-12 09:31:38');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (107, 'Protocol buffer', NULL, 20, '2022-07-12 14:49:18', '2022-07-12 14:49:18');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (108, 'Xml', NULL, 1, '2022-07-16 15:20:56', '2022-07-16 15:20:56');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (109, 'Tsql', NULL, 0, '2022-07-19 09:13:29', '2022-07-19 09:13:29');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (110, 'Cuda', NULL, 12, '2022-07-21 03:03:30', '2022-07-21 03:03:30');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (111, 'Systemverilog', NULL, 6, '2022-07-22 08:46:44', '2022-07-22 08:46:44');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (112, 'Roff', NULL, 0, '2022-07-28 02:26:24', '2022-07-28 02:26:24');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (113, 'Component pascal', NULL, 0, '2022-07-29 08:57:21', '2022-07-29 08:57:21');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (114, 'Ocaml', NULL, 0, '2022-08-06 12:53:26', '2022-08-06 12:53:26');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (115, 'Unity3d asset', NULL, 1, '2022-08-06 13:05:33', '2022-08-06 13:05:33');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (116, 'Ini', NULL, 0, '2022-08-06 13:16:49', '2022-08-06 13:16:49');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (117, 'Hcl', NULL, 1, '2022-08-06 17:51:36', '2022-08-06 17:51:36');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (118, 'Postscript', NULL, 5, '2022-08-09 01:55:23', '2022-08-09 01:55:23');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (119, 'Visual basic .net', NULL, 5, '2022-08-10 09:52:01', '2022-08-10 09:52:01');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (120, 'Mathematica', NULL, 0, '2022-08-10 10:24:41', '2022-08-10 10:24:41');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (121, 'Cmake', NULL, 3, '2022-08-10 15:46:25', '2022-08-10 15:46:25');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (122, 'Qml', NULL, 1, '2022-08-10 23:28:11', '2022-08-10 23:28:11');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (123, 'Powershell', NULL, 9, '2022-08-13 05:45:17', '2022-08-13 05:45:17');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (124, 'Public key', NULL, 5, '2022-08-13 14:05:23', '2022-08-13 14:05:23');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (125, 'Vba', NULL, -1, '2022-08-15 13:07:32', '2022-08-15 13:07:32');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (126, 'Autohotkey', NULL, 0, '2022-08-17 12:18:06', '2022-08-17 12:18:06');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (127, 'Mcfunction', NULL, 0, '2022-08-20 09:07:56', '2022-08-20 09:07:56');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (128, 'Ejs', NULL, 0, '2022-08-21 08:03:19', '2022-08-21 08:03:19');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (129, 'Batchfile', NULL, 9, '2022-08-22 03:40:41', '2022-08-22 03:40:41');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (130, 'Freemarker', NULL, 0, '2022-08-29 12:10:00', '2022-08-29 12:10:00');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (131, 'Asl', NULL, 0, '2022-08-30 01:54:31', '2022-08-30 01:54:31');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (132, 'Emacs lisp', NULL, 16, '2022-09-08 14:11:12', '2022-09-08 14:11:12');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (133, 'Vim script', NULL, 8, '2022-09-09 09:34:52', '2022-09-09 09:34:52');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (134, 'Lua', NULL, 22, '2022-09-19 08:31:11', '2022-09-19 08:31:11');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (135, 'Purebasic', NULL, 23, '2022-09-28 08:29:02', '2022-09-28 08:29:02');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (136, 'Dockerfile', NULL, 26, '2022-10-26 16:07:30', '2022-10-26 16:07:30');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (137, 'Plpgsql', NULL, 2, '2022-11-04 11:45:29', '2022-11-04 11:45:29');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (138, 'Gnuplot', NULL, 0, '2022-11-16 08:27:53', '2022-11-16 08:27:53');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (139, 'Sql', NULL, 2, '2022-12-14 07:22:15', '2022-12-14 07:22:15');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (140, 'Ec', NULL, 0, '2023-01-13 11:40:19', '2023-01-13 11:40:19');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (141, 'Hack', NULL, 0, '2023-01-19 09:20:20', '2023-01-19 09:20:20');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (142, 'Smarty', NULL, 1, '2023-01-22 09:41:44', '2023-01-22 09:41:44');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (143, 'Standard ml', NULL, 0, '2023-01-31 01:09:44', '2023-01-31 01:09:44');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (144, 'Scss', NULL, 3, '2023-02-13 11:35:22', '2023-02-13 11:35:22');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (145, 'Modelica', NULL, 2, '2023-03-12 09:44:06', '2023-03-12 09:44:06');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (146, 'Cython', NULL, 1, '2023-04-09 00:17:30', '2023-04-09 00:17:30');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (147, 'Yacc', NULL, 1, '2023-04-22 15:25:41', '2023-04-22 15:25:41');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (148, 'Fortran', NULL, 4, '2023-06-07 20:04:15', '2023-06-07 20:04:15');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (149, 'Nesc', NULL, 3, '2023-06-08 17:42:46', '2023-06-08 17:42:46');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (150, 'Vim snippet', NULL, 2, '2023-07-07 13:27:18', '2023-07-07 13:27:18');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (151, 'F*', NULL, 7, '2023-08-14 02:54:33', '2023-08-14 02:54:33');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (152, 'Go module', NULL, 0, '2023-08-14 08:13:23', '2023-08-14 08:13:23');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (153, 'Rich text format', NULL, 1, '2023-09-15 11:49:57', '2023-09-15 11:49:57');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (154, 'Llvm', NULL, 5, '2023-09-29 14:04:54', '2023-09-29 14:04:54');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (155, 'Mlir', NULL, 4, '2023-09-30 00:26:29', '2023-09-30 00:26:29');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (156, 'Glsl', NULL, 1, '2023-09-30 04:13:31', '2023-09-30 04:13:31');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (157, 'Vyper', NULL, 1, '2023-10-10 03:19:55', '2023-10-10 03:19:55');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (158, 'Vhdl', NULL, 1, '2023-10-11 09:50:22', '2023-10-11 09:50:22');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (159, 'Openqasm', NULL, 1, '2023-10-26 06:56:41', '2023-10-26 06:56:41');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (160, 'Stl', NULL, 2, '2023-11-05 03:41:39', '2023-11-05 03:41:39');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (161, 'Smalltalk', NULL, 1, '2023-11-07 02:31:45', '2023-11-07 02:31:45');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (162, 'Org', NULL, 1, '2023-11-17 02:25:17', '2023-11-17 02:25:17');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (163, 'Gettext catalog', NULL, 1, '2023-11-20 09:59:16', '2023-11-20 09:59:16');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (164, 'Promela', NULL, 1, '2023-11-22 07:09:52', '2023-11-22 07:09:52');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (165, 'Digital command language', NULL, 2, '2023-12-03 14:28:05', '2023-12-03 14:28:05');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (166, 'Sed', NULL, 1, '2023-12-07 16:22:03', '2023-12-07 16:22:03');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (167, 'Shaderlab', NULL, 0, '2024-01-15 09:07:14', '2024-01-15 09:07:14');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (168, 'Xslt', NULL, 0, '2024-01-16 02:50:26', '2024-01-16 02:50:26');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (169, 'Jsonnet', NULL, 1, '2024-01-24 14:26:23', '2024-01-24 14:26:23');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (170, 'Prolog', NULL, 1, '2024-04-08 06:53:07', '2024-04-08 06:53:07');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (171, 'Dotenv', NULL, 0, '2024-04-16 09:01:04', '2024-04-16 09:01:04');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (172, 'Pickle', NULL, 1, '2024-04-17 09:39:41', '2024-04-17 09:39:41');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (173, 'Cpp', NULL, 0, '2024-04-18 22:58:19', '2024-04-18 22:58:19');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (174, 'Jetbrains mps', NULL, 1, '2024-04-19 10:00:24', '2024-04-19 10:00:24');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (175, 'Nginx', NULL, 1, '2024-05-09 07:37:42', '2024-05-09 07:37:42');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (176, 'Isabelle', NULL, 1, '2024-06-21 02:30:42', '2024-06-21 02:30:42');
INSERT INTO `project_languages` (`id`, `name`, `position`, `projects_count`, `created_at`, `updated_at`) VALUES (177, 'Mdx', NULL, 1, '2024-07-07 18:20:36', '2024-07-07 18:20:36');
COMMIT;
SET FOREIGN_KEY_CHECKS = 1;

View File

@ -1,25 +0,0 @@
#!/bin/bash
# 定义备份目录和文件名
backup_dir="/data/mysql_backup"
backup_file="$backup_dir/forgeplus-$(date +%Y%m%d%H%M%S).sql"
# MySQL 连接参数
mysql_host="192.168.137.40"
mysql_port="3306"
mysql_user="root"
mysql_password="123456"
database_name="local_forgeplus_v3"
# 创建备份目录
mkdir -p "$backup_dir"
# 执行备份命令
mysqldump -h "$mysql_host" -P "$mysql_port" -u "$mysql_user" -p"$mysql_password" "$database_name" > "$backup_file"
# 检查备份结果
if [ $? -eq 0 ]; then
echo "MySQL backup successfully created: $backup_file"
else
echo "MySQL backup failed!"
fi

View File

@ -5,7 +5,7 @@ backup_dir="/data/mysql_backup"
backup_file="$backup_dir/forgeplus-$(date +%Y%m%d%H%M%S).sql"
# MySQL 连接参数
mysql_host="localhost"
mysql_host="172.20.32.202"
mysql_port="3306"
mysql_user="root"
mysql_password="gitlinK#%01"

View File

@ -2,14 +2,14 @@
# 定义备份目录和文件名
backup_dir="/data/mysql_backup"
backup_file="$backup_dir/gitea-$(date +%Y%m%d%H%M%S).sql"
backup_file="$backup_dir/gitea_hat-$(date +%Y%m%d%H%M%S).sql"
# MySQL 连接参数
mysql_host="localhost"
mysql_host="172.20.32.202"
mysql_port="3306"
mysql_user="root"
mysql_password="gitlinK#%01"
database_name="gitea"
database_name="gitea_hat"
# 创建备份目录
mkdir -p "$backup_dir"

View File

@ -2,7 +2,7 @@
# 定义备份文件路径和数据库信息
backup_file="/data/mysql_backup/forgeplus-{年月日}.sql"
mysql_host="localhost"
mysql_host="172.20.32.202"
mysql_port="3306"
mysql_user="root"
mysql_password="gitlinK#%01"

View File

@ -1,12 +1,12 @@
#!/bin/bash
# 定义备份文件路径和数据库信息
backup_file="/data/mysql_backup/gitea-{年月日}.sql"
mysql_host="localhost"
backup_file="/data/mysql_backup/gitea_hat-{年月日}.sql"
mysql_host="172.20.32.202"
mysql_port="3306"
mysql_user="root"
mysql_password="gitlinK#%01"
database_name="gitea"
database_name="gitea_hat"
# 检查备份文件是否存在
if [ -f "$backup_file" ]; then