--- fenglin/TODO/sql/db_stru.sql 2025/04/01 10:46:40 1.10 +++ fenglin/TODO/sql/db_stru.sql 2025/04/11 04:25:34 1.15 @@ -144,53 +144,6 @@ CREATE TABLE `journal_index` ( `enable` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -CREATE TABLE `mng_err_login_log` ( - `ID` int NOT NULL, - `username` varchar(14) DEFAULT NULL, - `password` varchar(12) DEFAULT NULL, - `login_dt` datetime DEFAULT NULL, - `login_ip` varchar(20) DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; - -CREATE TABLE `mng_login_log` ( - `ID` int NOT NULL, - `UID` mediumint NOT NULL DEFAULT '0', - `login_dt` datetime DEFAULT NULL, - `login_ip` varchar(20) DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; - -CREATE TABLE `mng_priv_list` ( - `PID` mediumint NOT NULL, - `UID` mediumint NOT NULL DEFAULT '0', - `ch_passwd` tinyint UNSIGNED NOT NULL DEFAULT '1', - `db_cleanup` tinyint UNSIGNED NOT NULL DEFAULT '0', - `score_cacl` tinyint UNSIGNED NOT NULL DEFAULT '0', - `auth_user_op` tinyint UNSIGNED NOT NULL DEFAULT '0', - `section_op` tinyint UNSIGNED NOT NULL DEFAULT '0', - `master_op` tinyint UNSIGNED NOT NULL DEFAULT '0', - `photo_check` tinyint UNSIGNED NOT NULL DEFAULT '0', - `prize_op` tinyint UNSIGNED NOT NULL DEFAULT '0', - `article_audit` tinyint UNSIGNED NOT NULL DEFAULT '0', - `gen_ex` tinyint UNSIGNED NOT NULL DEFAULT '0', - `upload_check` tinyint UNSIGNED NOT NULL DEFAULT '0', - `article_recommend` tinyint UNSIGNED NOT NULL DEFAULT '0' -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; - -CREATE TABLE `mng_user_list` ( - `UID` mediumint NOT NULL, - `username` varchar(14) NOT NULL DEFAULT '', - `password` varchar(64) NOT NULL DEFAULT '', - `enable` tinyint UNSIGNED NOT NULL DEFAULT '0' -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; - -CREATE TABLE `section_apply_log` ( - `AID` smallint NOT NULL, - `SID` smallint NOT NULL DEFAULT '0', - `UID` mediumint NOT NULL DEFAULT '0', - `process_dt` datetime DEFAULT NULL, - `memo` text -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; - CREATE TABLE `section_class` ( `CID` smallint NOT NULL, `cname` varchar(20) DEFAULT NULL, @@ -199,17 +152,6 @@ CREATE TABLE `section_class` ( `sort_order` smallint NOT NULL DEFAULT '10' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -CREATE TABLE `section_class_master` ( - `MID` smallint NOT NULL, - `CID` smallint NOT NULL DEFAULT '0', - `UID` mediumint NOT NULL DEFAULT '0', - `begin_dt` datetime DEFAULT NULL, - `end_dt` datetime DEFAULT NULL, - `enable` tinyint UNSIGNED NOT NULL DEFAULT '1', - `memo` text, - `major` tinyint UNSIGNED NOT NULL DEFAULT '0' -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; - CREATE TABLE `section_config` ( `SID` smallint NOT NULL, `sname` varchar(20) DEFAULT NULL, @@ -221,7 +163,6 @@ CREATE TABLE `section_config` ( `enable` tinyint UNSIGNED NOT NULL DEFAULT '1', `exp_get` tinyint UNSIGNED NOT NULL DEFAULT '0', `recommend` tinyint UNSIGNED NOT NULL DEFAULT '0', - `transship_ratio` float NOT NULL DEFAULT '0.5', `set_UID` mediumint DEFAULT '0', `set_dt` datetime DEFAULT NULL, `set_ip` varchar(20) DEFAULT NULL, @@ -246,29 +187,9 @@ CREATE TABLE `section_master` ( `end_dt` datetime DEFAULT NULL, `enable` tinyint UNSIGNED NOT NULL DEFAULT '1', `major` tinyint UNSIGNED NOT NULL DEFAULT '0', - `formal` tinyint UNSIGNED NOT NULL DEFAULT '0', - `memo` text -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; - -CREATE TABLE `section_master_apply` ( - `AID` smallint NOT NULL, - `SID` smallint NOT NULL DEFAULT '0', - `UID` mediumint NOT NULL DEFAULT '0', - `apply_dt` datetime DEFAULT NULL, - `process` tinyint UNSIGNED NOT NULL DEFAULT '0', - `process_dt` datetime DEFAULT NULL, - `permit` tinyint UNSIGNED NOT NULL DEFAULT '0', - `major` tinyint UNSIGNED NOT NULL DEFAULT '0', `memo` text ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -CREATE TABLE `section_user_priv` ( - `SID` smallint NOT NULL DEFAULT '0', - `UID` mediumint NOT NULL DEFAULT '0', - `read` tinyint UNSIGNED NOT NULL DEFAULT '0', - `write` tinyint UNSIGNED NOT NULL DEFAULT '0' -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; - CREATE TABLE `send_pass_log` ( `ID` mediumint NOT NULL, `UID` mediumint NOT NULL DEFAULT '0', @@ -378,7 +299,6 @@ CREATE TABLE `user_pubinfo` ( `sign_1` mediumtext, `sign_2` mediumtext, `sign_3` mediumtext, - `sub_permission` tinyint UNSIGNED NOT NULL DEFAULT '1', `upload_limit` int NOT NULL DEFAULT '1048576', `login_notify_dt` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; @@ -392,13 +312,6 @@ CREATE TABLE `user_reginfo` ( `memo` mediumtext ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -CREATE TABLE `user_regverify` ( - `UID` mediumint NOT NULL DEFAULT '0', - `verify_code` varchar(10) NOT NULL DEFAULT '', - `complete` tinyint UNSIGNED NOT NULL DEFAULT '0', - `set_dt` datetime DEFAULT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; - CREATE TABLE `user_score` ( `UID` mediumint NOT NULL DEFAULT '0', `score` mediumint NOT NULL DEFAULT '0', @@ -498,34 +411,10 @@ ALTER TABLE `journal_data` ALTER TABLE `journal_index` ADD PRIMARY KEY (`JID`); -ALTER TABLE `mng_err_login_log` - ADD PRIMARY KEY (`ID`); - -ALTER TABLE `mng_login_log` - ADD PRIMARY KEY (`ID`), - ADD KEY `UID` (`UID`), - ADD KEY `login_dt` (`login_dt`); - -ALTER TABLE `mng_priv_list` - ADD PRIMARY KEY (`PID`), - ADD UNIQUE KEY `UID` (`UID`); - -ALTER TABLE `mng_user_list` - ADD PRIMARY KEY (`UID`), - ADD UNIQUE KEY `username` (`username`); - -ALTER TABLE `section_apply_log` - ADD PRIMARY KEY (`AID`); - ALTER TABLE `section_class` ADD PRIMARY KEY (`CID`), ADD KEY `sort_order` (`sort_order`); -ALTER TABLE `section_class_master` - ADD PRIMARY KEY (`MID`), - ADD KEY `UID` (`UID`), - ADD KEY `CID` (`CID`); - ALTER TABLE `section_config` ADD PRIMARY KEY (`SID`), ADD KEY `CID` (`CID`), @@ -543,13 +432,6 @@ ALTER TABLE `section_master` ADD KEY `SID` (`SID`), ADD KEY `UID` (`UID`); -ALTER TABLE `section_master_apply` - ADD PRIMARY KEY (`AID`); - -ALTER TABLE `section_user_priv` - ADD PRIMARY KEY (`SID`,`UID`), - ADD KEY `UID` (`UID`); - ALTER TABLE `send_pass_log` ADD PRIMARY KEY (`ID`), ADD KEY `UID` (`UID`); @@ -614,10 +496,6 @@ ALTER TABLE `user_pubinfo` ALTER TABLE `user_reginfo` ADD PRIMARY KEY (`UID`); -ALTER TABLE `user_regverify` - ADD PRIMARY KEY (`UID`), - ADD UNIQUE KEY `verify_code` (`verify_code`); - ALTER TABLE `user_score` ADD PRIMARY KEY (`UID`), ADD KEY `score` (`score`); @@ -670,27 +548,9 @@ ALTER TABLE `journal_data` ALTER TABLE `journal_index` MODIFY `JID` smallint NOT NULL AUTO_INCREMENT; -ALTER TABLE `mng_err_login_log` - MODIFY `ID` int NOT NULL AUTO_INCREMENT; - -ALTER TABLE `mng_login_log` - MODIFY `ID` int NOT NULL AUTO_INCREMENT; - -ALTER TABLE `mng_priv_list` - MODIFY `PID` mediumint NOT NULL AUTO_INCREMENT; - -ALTER TABLE `mng_user_list` - MODIFY `UID` mediumint NOT NULL AUTO_INCREMENT; - -ALTER TABLE `section_apply_log` - MODIFY `AID` smallint NOT NULL AUTO_INCREMENT; - ALTER TABLE `section_class` MODIFY `CID` smallint NOT NULL AUTO_INCREMENT; -ALTER TABLE `section_class_master` - MODIFY `MID` smallint NOT NULL AUTO_INCREMENT; - ALTER TABLE `section_config` MODIFY `SID` smallint NOT NULL AUTO_INCREMENT; @@ -700,9 +560,6 @@ ALTER TABLE `section_favorite` ALTER TABLE `section_master` MODIFY `MID` smallint NOT NULL AUTO_INCREMENT; -ALTER TABLE `section_master_apply` - MODIFY `AID` smallint NOT NULL AUTO_INCREMENT; - ALTER TABLE `send_pass_log` MODIFY `ID` mediumint NOT NULL AUTO_INCREMENT;