-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcms.sql
More file actions
92 lines (79 loc) · 2.98 KB
/
cms.sql
File metadata and controls
92 lines (79 loc) · 2.98 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
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
/*
Navicat Premium Data Transfer
Source Server : local
Source Server Type : MySQL
Source Server Version : 50525
Source Host : localhost
Source Database : cms
Target Server Type : MySQL
Target Server Version : 50525
File Encoding : utf-8
Date: 03/09/2015 19:32:22 PM
*/
SET NAMES utf8;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for `About`
-- ----------------------------
DROP TABLE IF EXISTS `About`;
CREATE TABLE `About` (
`about` text NOT NULL,
`Id` int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of `About`
-- ----------------------------
BEGIN;
INSERT INTO `About` VALUES ('<h2><strong>This is the text on the about page.</strong></h2>\r\n<p> </p>\r\n<p style=\"padding-left: 30px;\"><strong> </strong></p>', '1');
COMMIT;
-- ----------------------------
-- Table structure for `Contact`
-- ----------------------------
DROP TABLE IF EXISTS `Contact`;
CREATE TABLE `Contact` (
`contact` text NOT NULL,
`Id` int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of `Contact`
-- ----------------------------
BEGIN;
INSERT INTO `Contact` VALUES ('<h2><strong>This is the contact page.</strong></h2>\r\n<p> </p>\r\n<p> </p>\r\n<p style=\"padding-left: 30px;\"><strong> </strong></p>', '1');
COMMIT;
-- ----------------------------
-- Table structure for `GD`
-- ----------------------------
DROP TABLE IF EXISTS `GD`;
CREATE TABLE `GD` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`Text` char(100) DEFAULT NULL,
`Img_id` char(50) DEFAULT NULL,
`Img_lg` char(50) DEFAULT NULL,
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of `GD`
-- ----------------------------
BEGIN;
INSERT INTO `GD` VALUES ('1', '1', 'gd1thumb.jpg', 'gd1.jpg'), ('2', '2', 'gd2thumb.jpg', 'gd2.jpg'), ('3', '3', 'gd3thumb.jpg', 'gd3.jpg'), ('4', '4', 'gd4thumb.jpg', 'gd4.jpg'), ('5', '5', 'gd5thumb.jpg', 'gd5.jpg'), ('6', '6', 'gd6thumb.jpg', 'gd6.jpg');
COMMIT;
-- ----------------------------
-- Table structure for `Photo`
-- ----------------------------
DROP TABLE IF EXISTS `Photo`;
CREATE TABLE `Photo` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`Text` char(100) DEFAULT NULL,
`Img_id` char(50) DEFAULT NULL,
`Img_lg` char(50) DEFAULT NULL,
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of `Photo`
-- ----------------------------
BEGIN;
INSERT INTO `Photo` VALUES ('4', '1', 'photo1thumb.jpg', 'photo1.jpg'), ('5', '2', 'photo2thumb.jpg', 'photo2.jpg'), ('6', '3', 'photo3thumb.jpg', 'photo3.jpg'), ('7', '4', 'photo4thumb.jpg', 'photo4.jpg'), ('8', '5', 'photo5thumb.jpg', 'photo5.jpg'), ('9', '6', 'photo6thumb.jpg', 'photo6.jpg');
COMMIT;
SET FOREIGN_KEY_CHECKS = 1;