-
Notifications
You must be signed in to change notification settings - Fork 11
/
chii_person_collects.sql
43 lines (37 loc) · 1.67 KB
/
chii_person_collects.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
-- MySQL dump 10.13 Distrib 8.0.32, for Linux (x86_64)
--
-- ------------------------------------------------------
-- Server version 5.7.33-0ubuntu0.16.04.1-log
/*!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 */;
/*!50503 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `chii_person_collects`
--
DROP TABLE IF EXISTS `chii_person_collects`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `chii_person_collects` (
`prsn_clt_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`prsn_clt_cat` enum('prsn','crt') NOT NULL,
`prsn_clt_mid` mediumint(8) unsigned NOT NULL,
`prsn_clt_uid` mediumint(8) unsigned NOT NULL,
`prsn_clt_dateline` int(10) unsigned NOT NULL,
PRIMARY KEY (`prsn_clt_id`),
KEY `prsn_clt_cat` (`prsn_clt_cat`,`prsn_clt_mid`),
KEY `prsn_clt_uid` (`prsn_clt_uid`),
KEY `prsn_clt_mid` (`prsn_clt_mid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='人物收藏';
/*!40101 SET character_set_client = @saved_cs_client */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!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 */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed