-
Notifications
You must be signed in to change notification settings - Fork 2
/
myphp.sql
95 lines (82 loc) · 3.46 KB
/
myphp.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for easy_basic
-- ----------------------------
DROP TABLE IF EXISTS `easy_basic`;
CREATE TABLE `easy_basic` (
`id` int(11) NOT NULL,
`web_title` varchar(255) DEFAULT NULL,
`web_email` varchar(255) DEFAULT NULL,
`web_copyright` varchar(255) DEFAULT NULL,
`seo_keyword` varchar(255) DEFAULT NULL,
`seo_description` varchar(255) DEFAULT NULL,
`seo_count` varchar(255) DEFAULT NULL,
`basic_num` int(11) DEFAULT NULL,
`basic_image` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of easy_basic
-- ----------------------------
INSERT INTO `easy_basic` VALUES ('1', '小野直樹 / 记录生活', '[email protected]', 'Copyright © 2018 - 2019 www.tokyos.top By NaokiOno All Rights Reserved.', '小野直樹,记录,生活,长春,东京,上海,摄影,清新,人生,魅力,电影,画面', '努力记住人生最美丽的画面,它并不是来自电影,而是您眼神的画面。', '##', '5', 'gif, jpg,jpeg,png,bmp');
-- ----------------------------
-- Table structure for easy_category
-- ----------------------------
DROP TABLE IF EXISTS `easy_category`;
CREATE TABLE `easy_category` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`pid` int(11) DEFAULT NULL,
`cate_name` varchar(255) DEFAULT NULL,
`cate_keyword` varchar(255) DEFAULT NULL,
`cate_description` varchar(255) DEFAULT NULL,
`cate_url` varchar(255) DEFAULT NULL,
`sort` int(11) DEFAULT NULL,
`cate_hide` int(1) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for easy_content
-- ----------------------------
DROP TABLE IF EXISTS `easy_content`;
CREATE TABLE `easy_content` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`content_pid` int(11) DEFAULT NULL,
`content_title` varchar(255) DEFAULT NULL,
`content_keyword` varchar(255) DEFAULT NULL,
`content_description` varchar(255) DEFAULT NULL,
`content_thumbnail` varchar(255) DEFAULT NULL,
`content_text` varchar(255) DEFAULT NULL,
`content_time` text NOT NULL,
`content_draft` int(2) DEFAULT '0',
`content_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for easy_counter
-- ----------------------------
DROP TABLE IF EXISTS `easy_counter`;
CREATE TABLE `easy_counter` (
`counter` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of easy_counter
-- ----------------------------
INSERT INTO `easy_counter` VALUES ('10');
-- ----------------------------
-- Table structure for easy_user
-- ----------------------------
DROP TABLE IF EXISTS `easy_user`;
CREATE TABLE `easy_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(255) DEFAULT NULL,
`nickname` varchar(255) DEFAULT NULL,
`password` varchar(255) DEFAULT NULL,
`email` varchar(255) DEFAULT NULL,
`thumbnail` varchar(255) DEFAULT NULL,
`level` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of easy_user
-- ----------------------------
INSERT INTO `easy_user` VALUES ('1', 'admin', '小野', 'c81e728d9d4c2f636f067f89cc14862c', '[email protected]', 'https://avatars1.githubusercontent.com/u/7269988?s=460&v=4', '2');