-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheasycms.sql
More file actions
40 lines (26 loc) · 2.73 KB
/
easycms.sql
File metadata and controls
40 lines (26 loc) · 2.73 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
/*
SQLyog - Free MySQL GUI v5.02
Host - 5.0.45-community-nt : Database - easycms
*********************************************************************
Server version : 5.0.45-community-nt
*/
create database if not exists `easycms`;
USE `easycms`;
/*Table structure for table `article` */
DROP TABLE IF EXISTS `article`;
CREATE TABLE `article` (
`articleid` int(11) NOT NULL auto_increment,
`title` varchar(100) default NULL,
`indeximgurl` varchar(50) default NULL,
`content` varchar(9999) default NULL,
`edittime` varchar(50) default NULL,
PRIMARY KEY (`articleid`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*Data for the table `article` */
insert into `article` values
(1,'yyy','yyy','yyy','2017-2-26 21:25:25'),
(2,'yyy','yyy','yyy','2017-2-26 21:56:45'),
(3,'yyy','yyy','yyy','2017-2-26 22:20:50'),
(4,'zzzzzzzzzzz','zzzzzzzz','<p>zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz</p>','2017-2-27 15:42:36'),
(5,'xxxxxxxxxxx','xxxxxxxxxxxxxx','<p>xxxxxxxxxxxxxxxx</p>','2017-2-27 15:42:50'),
(6,'????“????7???”???????????????','static/img/img1.jpg','<p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 26px; color: rgb(61, 70, 77); font-family: "PingFang SC", "Lantinghei SC", "Helvetica Neue", Helvetica, Arial, "Microsoft YaHei", "\\\\5FAE???", STHeitiSC-Light, simsun, "\\\\5B8B?", "WenQuanYi Zen Hei", "WenQuanYi Micro Hei", sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\">???????????????????????????????????????????????????????????“??????????”????????????????????</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 26px; color: rgb(61, 70, 77); font-family: "PingFang SC", "Lantinghei SC", "Helvetica Neue", Helvetica, Arial, "Microsoft YaHei", "\\\\5FAE???", STHeitiSC-Light, simsun, "\\\\5B8B?", "WenQuanYi Zen Hei", "WenQuanYi Micro Hei", sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\">????????CEO??·????????1????????????</p><p style=\"box-sizing: border-box; margin-top: 0px; margin-bottom: 26px; color: rgb(61, 70, 77); font-family: "PingFang SC", "Lantinghei SC", "Helvetica Neue", Helvetica, Arial, "Microsoft YaHei", "\\\\5FAE???", STHeitiSC-Light, simsun, "\\\\5B8B?", "WenQuanYi Zen Hei", "WenQuanYi Micro Hei", sans-serif; font-size: 15px; white-space: normal; background-color: rgb(255, 255, 255);\">?????????????????????????????????????????????????????????????????????????????????????????????????????????????????</p><p><br/></p>','2017-2-27 16:16:12');