forked from inspire12/homepage-spring-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb_create_statement.txt
46 lines (44 loc) · 1.76 KB
/
db_create_statement.txt
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
CREATE TABLE `article` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`no` int(11) DEFAULT '0',
`depth` int(11) DEFAULT '0',
`grpord` int(11) DEFAULT '0',
`subject` varchar(50) DEFAULT NULL,
`content` mediumtext,
`username` varchar(45) DEFAULT NULL,
`board_id` int(11) DEFAULT '0',
`hit` int(11) DEFAULT '0',
`likes` int(11) DEFAULT '0',
`tags` varchar(50) DEFAULT '',
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`is_deleted` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `no` (`no`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4
CREATE TABLE `comment` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`article_id` int(11) NOT NULL DEFAULT '0',
`no` int(11) NOT NULL DEFAULT '0',
`depth` int(11) NOT NULL DEFAULT '0',
`grpord` int(11) NOT NULL DEFAULT '0',
`username` varchar(45) CHARACTER SET utf8mb4 NOT NULL,
`content` mediumtext CHARACTER SET utf8mb4,
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`like` int(11) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1
CREATE TABLE `users` (
`username` varchar(45) NOT NULL,
`email` varchar(45) CHARACTER SET utf8mb4 DEFAULT NULL,
`nickname` varchar(45) CHARACTER SET utf8mb4 DEFAULT NULL,
`name` varchar(45) CHARACTER SET utf8mb4 DEFAULT NULL,
`password` varchar(64) CHARACTER SET utf8mb4 DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`profile` varchar(130) DEFAULT NULL,
`enabled` tinyint(4) DEFAULT '1',
`last_logined_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`role` varchar(10) DEFAULT 'USER',
PRIMARY KEY (`username`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1