Created the object oriented experimental branch
[simplecm.git] / database.sql
blobc4201797b83abc1204ff2b76ec64d97e596fe970
1 -- phpMyAdmin SQL Dump
2 -- version 2.6.4-pl3
3 -- http://www.phpmyadmin.net
4 -- 
6 -- --------------------------------------------------------
8 -- 
9 -- Table structure for table `admin`
10 -- 
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,
18   `title` text NOT NULL
21 -- 
22 -- Dumping data for table `admin`
23 -- 
25 INSERT INTO `admin` VALUES ('0.2.0', 'yes', 'yes', 'none', ' ', 'SimpleCM');
27 -- --------------------------------------------------------
29 -- 
30 -- Table structure for table `admin_log`
31 -- 
33 CREATE TABLE `admin_log` (
34   `scm` text NOT NULL,
35   `user` text NOT NULL,
36   `useragent` text NOT NULL,
37   `date` text NOT NULL,
38   `ip` text NOT NULL
41 -- --------------------------------------------------------
43 -- 
44 -- Table structure for table `admin_mod`
45 -- 
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,
52   `ai` text NOT NULL,
53   `optionfile` text NOT NULL
56 -- --------------------------------------------------------
58 -- 
59 -- Table structure for table `admin_motd`
60 -- 
62 CREATE TABLE `admin_motd` (
63   `motd` text NOT NULL,
64   `id` text NOT NULL
67 -- 
68 -- Dumping data for table `admin_motd`
69 -- 
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 -- --------------------------------------------------------
79 -- 
80 -- Table structure for table `contact`
81 -- 
83 CREATE TABLE `contact` (
84   `name` text NOT NULL,
85   `email` text NOT NULL,
86   `message` text NOT NULL,
87   `subject` text NOT NULL,
88   `contact_id` text NOT NULL
92 -- --------------------------------------------------------
94 -- 
95 -- Table structure for table `news`
96 -- 
98 CREATE 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 -- --------------------------------------------------------
108 -- 
109 -- Table structure for table `users`
110 -- 
112 CREATE TABLE `users` (
113   `username` text NOT NULL,
114   `passwd` text NOT NULL,
115   `id` 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');