This repository has been archived by the owner on May 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
database.tables2.sql
250 lines (223 loc) · 9.02 KB
/
database.tables2.sql
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
-- MySQL dump 10.13 Distrib 5.1.66, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: govtrack
-- ------------------------------------------------------
-- Server version 5.1.66-0ubuntu0.11.10.3
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `billevents`
--
DROP TABLE IF EXISTS `billevents`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `billevents` (
`session` int(11) NOT NULL DEFAULT '0',
`type` varchar(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`number` int(11) NOT NULL DEFAULT '0',
`date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`eventxml` text COLLATE utf8_unicode_ci NOT NULL,
KEY `bill` (`session`,`type`,`number`),
KEY `index` (`date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `billindex`
--
DROP TABLE IF EXISTS `billindex`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `billindex` (
`session` int(11) NOT NULL DEFAULT '0',
`type` varchar(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`number` int(11) NOT NULL DEFAULT '0',
`idx` enum('sponsor','cosponsor','crs','publiclawnumber','committee') COLLATE utf8_unicode_ci NOT NULL,
`value` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
KEY `session` (`session`,`type`,`number`,`idx`),
KEY `index` (`idx`,`value`(127),`session`),
KEY `session_2` (`session`,`idx`,`value`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `billlinks`
--
DROP TABLE IF EXISTS `billlinks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `billlinks` (
`session` int(11) NOT NULL DEFAULT '0',
`type` varchar(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`number` int(11) NOT NULL DEFAULT '0',
`source` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`url` text COLLATE utf8_unicode_ci,
`excerpt` text COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`session`,`type`,`number`,`source`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `billlinks2`
--
DROP TABLE IF EXISTS `billlinks2`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `billlinks2` (
`session` int(11) NOT NULL DEFAULT '0',
`type` varchar(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`number` int(11) NOT NULL DEFAULT '0',
`url` text COLLATE utf8_unicode_ci,
`title` text COLLATE utf8_unicode_ci NOT NULL,
`added` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
KEY `session` (`session`,`type`,`number`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `billstatus`
--
DROP TABLE IF EXISTS `billstatus`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `billstatus` (
`session` int(11) NOT NULL DEFAULT '0',
`type` varchar(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`number` int(11) NOT NULL DEFAULT '0',
`title` text COLLATE utf8_unicode_ci NOT NULL,
`fulltitle` text COLLATE utf8_unicode_ci NOT NULL,
`statusdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`statusxml` text COLLATE utf8_unicode_ci NOT NULL,
`status` tinytext COLLATE utf8_unicode_ci,
PRIMARY KEY (`session`,`type`,`number`),
KEY `fulltitle` (`fulltitle`(100)),
KEY `statusdate` (`statusdate`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `billtitles`
--
DROP TABLE IF EXISTS `billtitles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `billtitles` (
`session` int(11) NOT NULL DEFAULT '0',
`type` varchar(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`number` int(11) NOT NULL DEFAULT '0',
`title` text COLLATE utf8_unicode_ci NOT NULL,
`titletype` enum('official','short','popular') COLLATE utf8_unicode_ci NOT NULL,
KEY `title` (`title`(60)),
KEY `bill` (`session`,`type`,`number`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `billusc`
--
DROP TABLE IF EXISTS `billusc`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `billusc` (
`session` int(11) NOT NULL,
`type` varchar(2) NOT NULL,
`number` int(11) NOT NULL,
`ref` varchar(30) NOT NULL,
KEY `bill` (`session`,`type`,`number`),
KEY `ref` (`ref`,`session`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `linksubmission`
--
DROP TABLE IF EXISTS `linksubmission`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `linksubmission` (
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`bill` tinytext NOT NULL,
`url` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `monitormatrix`
--
DROP TABLE IF EXISTS `monitormatrix`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `monitormatrix` (
`monitor1` text NOT NULL,
`monitor2` text NOT NULL,
`count` int(11) NOT NULL,
`tfidf` float NOT NULL,
PRIMARY KEY (`monitor1`(127),`monitor2`(127)),
KEY `monitor1` (`monitor1`(11),`count`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `notes`
--
DROP TABLE IF EXISTS `notes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `notes` (
`pageid` varchar(256) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`xhtml` text NOT NULL,
`alttitle` tinytext,
PRIMARY KEY (`pageid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `questions`
--
DROP TABLE IF EXISTS `questions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `questions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`question` int(11) NOT NULL,
`submissiondate` datetime NOT NULL,
`status` enum('new','approved','rejected') NOT NULL DEFAULT 'new',
`approvaldate` datetime NOT NULL,
`text` text NOT NULL,
`topic` text NOT NULL,
`moderator` varchar(12) NOT NULL,
`ipaddr` varchar(16) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `question` (`question`),
KEY `topic` (`topic`(16))
) ENGINE=MyISAM AUTO_INCREMENT=41713 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `votes`
--
DROP TABLE IF EXISTS `votes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `votes` (
`id` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
`date` datetime NOT NULL,
`seq` int(11) NOT NULL,
`description` text COLLATE utf8_unicode_ci NOT NULL,
`result` text COLLATE utf8_unicode_ci NOT NULL,
`billsession` int(11) DEFAULT NULL,
`billtype` varchar(2) COLLATE utf8_unicode_ci DEFAULT NULL,
`billnumber` int(11) DEFAULT NULL,
`amdtype` char(1) COLLATE utf8_unicode_ci DEFAULT NULL,
`amdnumber` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `bill` (`billsession`,`billtype`,`billnumber`),
KEY `date` (`date`,`seq`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2013-01-03 20:01:04