Skip to content

Commit 8d4c3ce

Browse files
committed
Added SQL file and updated readme
1 parent b8831fa commit 8d4c3ce

File tree

2 files changed

+79
-0
lines changed

2 files changed

+79
-0
lines changed

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@ Installtion
3939
7. Fill out the information about the site and your business, and save
4040
8. On the main page, edit your content!
4141

42+
43+
Other Notes
44+
---------------------------------
45+
In the v2.0 Release there is no way to add or remove sections, this is a major issues that will be fix in the next release
46+
47+
48+
4249
Bugs, Issues, and Other Questions
4350
-------------------------------------
4451
SiteEng 2.0 is a major rewrite from the SiteEng 1.x series. So there may be some bugs or incomplete features. You can see what is planned on the GitHub issues list.

SiteEng_Database_File.sql

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
-- phpMyAdmin SQL Dump
2+
-- version 3.4.11.1
3+
-- http://www.phpmyadmin.net
4+
--
5+
-- Host: localhost
6+
-- Generation Time: Jan 11, 2014 at 08:23 PM
7+
-- Server version: 5.5.35
8+
-- PHP Version: 5.2.17
9+
10+
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
11+
SET time_zone = "+00:00";
12+
13+
14+
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
15+
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
16+
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
17+
/*!40101 SET NAMES utf8 */;
18+
-- --------------------------------------------------------
19+
20+
--
21+
-- Table structure for table `articles`
22+
--
23+
24+
DROP TABLE IF EXISTS `articles`;
25+
CREATE TABLE IF NOT EXISTS `articles` (
26+
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
27+
`order` int(11) NOT NULL,
28+
`title` varchar(255) NOT NULL,
29+
`text` text NOT NULL,
30+
`type` varchar(255) NOT NULL,
31+
`section_id` int(11) NOT NULL,
32+
PRIMARY KEY (`id`)
33+
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=57 ;
34+
35+
--
36+
-- Dumping data for table `articles`
37+
--
38+
39+
INSERT INTO `articles` (`id`, `order`, `title`, `text`, `type`, `section_id`) VALUES
40+
(1, 1, '<span class="Article-Title">Talented</span> ', '\n <p class="Article-Text">\n \n \n \n \n \n \n \n \n \n \n \n \n \n Fact: Some People are just plan good at what they do. And we are! </p> ', 'article', 2),
41+
42+
-- --------------------------------------------------------
43+
44+
--
45+
-- Table structure for table `sections`
46+
--
47+
48+
DROP TABLE IF EXISTS `sections`;
49+
CREATE TABLE IF NOT EXISTS `sections` (
50+
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
51+
`order` int(11) NOT NULL,
52+
`columns` int(11) NOT NULL,
53+
`title` varchar(255) NOT NULL,
54+
`image` varchar(255) NOT NULL DEFAULT '',
55+
PRIMARY KEY (`id`)
56+
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
57+
58+
--
59+
-- Dumping data for table `sections`
60+
--
61+
62+
INSERT INTO `sections` (`id`, `order`, `columns`, `title`, `image`) VALUES
63+
(2, 2, 3, '<span class="Section-Title">About Us</span> ', ''),
64+
(3, 3, 1, '<span class="Section-Title">Service Locations</span>', ''),
65+
(4, 4, 2, '<span class="Section-Title">Contact Us</span> ', ''),
66+
(1, 1, 1, ' <span class="Section-Title">Home</span> ', '');
67+
68+
-- --------------------------------------------------------
69+
70+
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
71+
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
72+
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

0 commit comments

Comments
 (0)