about summary refs log tree commit diff stats
path: root/central/trunk/instadisc.sql
diff options
context:
space:
mode:
Diffstat (limited to 'central/trunk/instadisc.sql')
-rw-r--r--central/trunk/instadisc.sql129
1 files changed, 129 insertions, 0 deletions
diff --git a/central/trunk/instadisc.sql b/central/trunk/instadisc.sql new file mode 100644 index 0000000..b3de26e --- /dev/null +++ b/central/trunk/instadisc.sql
@@ -0,0 +1,129 @@
1-- phpMyAdmin SQL Dump
2-- version 2.9.1.1
3-- http://www.phpmyadmin.net
4--
5-- Host: localhost
6-- Generation Time: Aug 03, 2008 at 04:54 PM
7-- Server version: 5.0.51
8-- PHP Version: 5.2.4-2ubuntu5.3
9--
10-- Database: `instadisc`
11--
12
13-- --------------------------------------------------------
14
15--
16-- Table structure for table `centralServers`
17--
18
19CREATE TABLE IF NOT EXISTS `centralServers` (
20 `id` int(11) NOT NULL auto_increment,
21 `url` varchar(255) NOT NULL,
22 `code` varchar(255) NOT NULL,
23 `xmlrpc` varchar(255) NOT NULL,
24 PRIMARY KEY (`id`)
25) ENGINE=MyISAM DEFAULT CHARSET=latin1;
26
27-- --------------------------------------------------------
28
29--
30-- Table structure for table `config`
31--
32
33CREATE TABLE IF NOT EXISTS `config` (
34 `id` int(11) NOT NULL auto_increment,
35 `name` varchar(255) NOT NULL,
36 `value` varchar(255) NOT NULL,
37 PRIMARY KEY (`id`)
38) ENGINE=MyISAM DEFAULT CHARSET=latin1;
39
40-- --------------------------------------------------------
41
42--
43-- Table structure for table `inbox`
44--
45
46CREATE TABLE IF NOT EXISTS `inbox` (
47 `id` int(11) NOT NULL auto_increment,
48 `username` varchar(255) NOT NULL,
49 `itemID` int(11) NOT NULL,
50 `subscription` varchar(255) NOT NULL,
51 `title` varchar(255) NOT NULL,
52 `author` varchar(255) NOT NULL,
53 `url` varchar(255) NOT NULL,
54 `semantics` text NOT NULL,
55 PRIMARY KEY (`id`)
56) ENGINE=MyISAM DEFAULT CHARSET=latin1;
57
58-- --------------------------------------------------------
59
60--
61-- Table structure for table `oldVerID`
62--
63
64CREATE TABLE IF NOT EXISTS `oldVerID` (
65 `id` int(11) NOT NULL auto_increment,
66 `username` varchar(255) NOT NULL,
67 `verID` int(11) NOT NULL,
68 PRIMARY KEY (`id`)
69) ENGINE=MyISAM DEFAULT CHARSET=latin1;
70
71-- --------------------------------------------------------
72
73--
74-- Table structure for table `pending`
75--
76
77CREATE TABLE IF NOT EXISTS `pending` (
78 `id` int(11) NOT NULL auto_increment,
79 `username` varchar(255) NOT NULL,
80 `password` varchar(255) NOT NULL,
81 `email` varchar(255) NOT NULL,
82 `code` varchar(255) NOT NULL,
83 PRIMARY KEY (`id`)
84) ENGINE=MyISAM DEFAULT CHARSET=latin1;
85
86-- --------------------------------------------------------
87
88--
89-- Table structure for table `pending2`
90--
91
92CREATE TABLE IF NOT EXISTS `pending2` (
93 `id` int(11) NOT NULL auto_increment,
94 `username` varchar(255) NOT NULL,
95 `url` varchar(255) NOT NULL,
96 `code` varchar(255) NOT NULL,
97 PRIMARY KEY (`id`)
98) ENGINE=MyISAM DEFAULT CHARSET=latin1;
99
100-- --------------------------------------------------------
101
102--
103-- Table structure for table `subscriptions`
104--
105
106CREATE TABLE IF NOT EXISTS `subscriptions` (
107 `id` mediumint(11) NOT NULL auto_increment,
108 `username` varchar(255) NOT NULL,
109 `url` varchar(255) NOT NULL,
110 `owner` varchar(5) NOT NULL,
111 PRIMARY KEY (`id`)
112) ENGINE=MyISAM DEFAULT CHARSET=latin1;
113
114-- --------------------------------------------------------
115
116--
117-- Table structure for table `users`
118--
119
120CREATE TABLE IF NOT EXISTS `users` (
121 `id` int(11) NOT NULL auto_increment,
122 `username` varchar(255) NOT NULL,
123 `password` varchar(255) NOT NULL,
124 `email` varchar(255) NOT NULL,
125 `ip` varchar(255) NOT NULL,
126 `nextItemID` int(11) NOT NULL,
127 PRIMARY KEY (`id`)
128) ENGINE=MyISAM DEFAULT CHARSET=latin1;
129