3 -- http://www.phpmyadmin.net
6 -- --------------------------------------------------------
9 -- Table structure for table `admin`
12 CREATE TABLE `admin` (
13 `version` text NOT NULL,
14 `admin` text NOT NULL,
15 `modinstall` text NOT NULL,
16 `layout` text NOT NULL,
17 `updateserver` text NOT NULL,
22 -- Dumping data for table `admin`
25 INSERT INTO `admin` VALUES ('0.2.0', 'yes', 'yes', 'none', ' ', 'SimpleCM');
27 -- --------------------------------------------------------
30 -- Table structure for table `admin_log`
33 CREATE TABLE `admin_log` (
36 `useragent` text NOT NULL,
41 -- --------------------------------------------------------
44 -- Table structure for table `admin_mod`
47 CREATE TABLE `admin_mod` (
48 `modname` text NOT NULL,
49 `modver` text NOT NULL,
50 `installdate` text NOT NULL,
51 `updateurl` text NOT NULL,
53 `optionfile` text NOT NULL
56 -- --------------------------------------------------------
59 -- Table structure for table `admin_motd`
62 CREATE TABLE `admin_motd` (
68 -- Dumping data for table `admin_motd`
72 INSERT INTO `admin_motd` VALUES ('There are always updates coming soon, so dont worry too much if you discover a bug!!!', '3');
73 INSERT INTO `admin_motd` VALUES ('Check simplecm.org for the newest updates', '4');
74 INSERT INTO `admin_motd` VALUES ('visit simplecm.org for the latest news', '5');
75 INSERT INTO `admin_motd` VALUES ('send suggestions to georgemoody@gmail.com', '6');
77 -- --------------------------------------------------------
80 -- Table structure for table `contact`
83 CREATE TABLE `contact` (
85 `email` text NOT NULL,
86 `message` text NOT NULL,
87 `subject` text NOT NULL,
88 `contact_id` text NOT NULL
92 -- --------------------------------------------------------
95 -- Table structure for table `news`
99 `Title` text NOT NULL,
100 `Author` text NOT NULL,
101 `Content` text NOT NULL,
102 `DateAdded` text NOT NULL,
103 `news_id` text NOT NULL
106 -- --------------------------------------------------------
109 -- Table structure for table `users`
112 CREATE TABLE `users` (
113 `username` text NOT NULL,
114 `passwd` text NOT NULL,
116 `permissions` text NOT NULL,
117 `first` text NOT NULL,
118 `last` text NOT NULL,
119 `location` text NOT NULL,
120 `timezone` text NOT NULL,
121 `email` text NOT NULL
123 INSERT INTO `users` (`username`, `passwd`, `id`, `permissions`, `first`, `last`, `location`, `timezone`, `email`) VALUES
124 ('user', '1a1dc91c907325c69271ddf0c944bc72', '0', 'admin', 'first', 'last', 'n', 'n', 'user@localhost');