-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathchii_groups.sql
More file actions
50 lines (44 loc) · 1.94 KB
/
chii_groups.sql
File metadata and controls
50 lines (44 loc) · 1.94 KB
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
44
45
46
47
48
49
50
-- 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_groups`
--
DROP TABLE IF EXISTS `chii_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `chii_groups` (
`grp_id` smallint(6) unsigned NOT NULL AUTO_INCREMENT,
`grp_cat` smallint(6) unsigned NOT NULL DEFAULT '0',
`grp_name` char(50) NOT NULL,
`grp_title` char(50) NOT NULL,
`grp_icon` varchar(255) NOT NULL,
`grp_creator` mediumint(8) unsigned NOT NULL DEFAULT '0',
`grp_topics` mediumint(8) unsigned NOT NULL DEFAULT '0',
`grp_posts` mediumint(8) unsigned NOT NULL DEFAULT '0',
`grp_members` mediumint(8) unsigned NOT NULL DEFAULT '1',
`grp_desc` text NOT NULL,
`grp_lastpost` int(10) unsigned NOT NULL,
`grp_builddate` int(10) unsigned NOT NULL,
`grp_accessible` tinyint(1) NOT NULL DEFAULT '1' COMMENT '可访问性',
`grp_nsfw` tinyint(1) unsigned NOT NULL,
PRIMARY KEY (`grp_id`),
KEY `grp_nsfw` (`grp_nsfw`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!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