]> git.pld-linux.org Git - packages/mnogosearch.git/blame - mnogosearch-Mysql-database
- obsoletes aspseek
[packages/mnogosearch.git] / mnogosearch-Mysql-database
CommitLineData
d0086ae8 1-- MySQL dump 8.21
2--
3-- Host: localhost Database: mnogo
4---------------------------------------------------------
5-- Server version 3.23.49
6
7--
8-- Table structure for table 'categories'
9--
10
11DROP TABLE IF EXISTS categories;
12CREATE TABLE categories (
13 rec_id int(11) NOT NULL auto_increment,
14 path char(10) NOT NULL default '',
15 link char(10) NOT NULL default '',
16 name char(64) NOT NULL default '',
17 PRIMARY KEY (rec_id)
18) TYPE=MyISAM;
19
20--
21-- Dumping data for table 'categories'
22--
23
24
25
26--
27-- Table structure for table 'crossdict'
28--
29
30DROP TABLE IF EXISTS crossdict;
31CREATE TABLE crossdict (
32 url_id int(11) NOT NULL default '0',
33 ref_id int(11) NOT NULL default '0',
34 word varchar(32) NOT NULL default '0',
35 intag int(11) NOT NULL default '0',
36 KEY url_id (url_id),
37 KEY ref_id (ref_id),
38 KEY word (word)
39) TYPE=MyISAM;
40
41--
42-- Dumping data for table 'crossdict'
43--
44
45
46
47--
48-- Table structure for table 'dict'
49--
50
51DROP TABLE IF EXISTS dict;
52CREATE TABLE dict (
53 url_id int(11) NOT NULL default '0',
54 word varchar(32) NOT NULL default '',
55 intag int(11) NOT NULL default '0',
56 KEY url_id (url_id),
57 KEY word_url (word)
58) TYPE=MyISAM;
59
60--
61-- Dumping data for table 'dict'
62--
63
64
65
66--
67-- Table structure for table 'ncrossdict'
68--
69
70DROP TABLE IF EXISTS ncrossdict;
71CREATE TABLE ncrossdict (
72 url_id int(11) NOT NULL default '0',
73 ref_id int(11) NOT NULL default '0',
74 word_id int(11) NOT NULL default '0',
75 intag int(11) NOT NULL default '0',
76 KEY url_id (url_id),
77 KEY ref_id (ref_id),
78 KEY word_id (word_id)
79) TYPE=MyISAM;
80
81--
82-- Dumping data for table 'ncrossdict'
83--
84
85
86
87--
88-- Table structure for table 'ndict'
89--
90
91DROP TABLE IF EXISTS ndict;
92CREATE TABLE ndict (
93 url_id int(11) NOT NULL default '0',
94 word_id int(11) NOT NULL default '0',
95 intag int(11) NOT NULL default '0',
96 KEY url_id (url_id),
97 KEY word_id (word_id)
98) TYPE=MyISAM;
99
100--
101-- Dumping data for table 'ndict'
102--
103
104
105
106--
107-- Table structure for table 'qtrack'
108--
109
110DROP TABLE IF EXISTS qtrack;
111CREATE TABLE qtrack (
112 qwords varchar(63) NOT NULL default '',
113 ip varchar(16) NOT NULL default '',
114 qtime int(11) NOT NULL default '0',
115 found int(11) NOT NULL default '0',
116 ps int(11) NOT NULL default '0',
117 np int(11) NOT NULL default '0',
118 m varchar(63) NOT NULL default '',
119 wm varchar(63) NOT NULL default '',
120 o int(11) NOT NULL default '0',
121 t varchar(63) NOT NULL default '',
122 cat varchar(63) NOT NULL default '',
123 ul varchar(63) NOT NULL default '',
124 wf varchar(63) NOT NULL default '',
125 g varchar(63) NOT NULL default '',
126 tmplt varchar(63) NOT NULL default ''
127) TYPE=MyISAM;
128
129--
130-- Dumping data for table 'qtrack'
131--
132
133
134
135--
136-- Table structure for table 'robots'
137--
138
139DROP TABLE IF EXISTS robots;
140CREATE TABLE robots (
141 hostinfo varchar(127) NOT NULL default '',
142 path varchar(127) NOT NULL default ''
143) TYPE=MyISAM;
144
145--
146-- Dumping data for table 'robots'
147--
148
149
150
151--
152-- Table structure for table 'thread'
153--
154
155DROP TABLE IF EXISTS thread;
156CREATE TABLE thread (
157 parent int(4) NOT NULL default '0',
158 child int(4) NOT NULL default '0'
159) TYPE=MyISAM;
160
161--
162-- Dumping data for table 'thread'
163--
164
165
166
167--
168-- Table structure for table 'url'
169--
170
171DROP TABLE IF EXISTS url;
172CREATE TABLE url (
173 rec_id int(11) NOT NULL auto_increment,
174 status int(11) NOT NULL default '0',
175 url varchar(128) binary NOT NULL default '',
176 content_type varchar(48) NOT NULL default '',
177 title varchar(128) NOT NULL default '',
178 txt varchar(255) NOT NULL default '',
179 docsize int(11) NOT NULL default '0',
180 next_index_time int(11) NOT NULL default '0',
181 last_mod_time int(11) NOT NULL default '0',
182 referrer int(11) NOT NULL default '0',
183 tag varchar(16) NOT NULL default '0',
184 hops int(11) NOT NULL default '0',
185 category varchar(16) NOT NULL default '',
186 keywords varchar(255) NOT NULL default '',
187 description varchar(100) NOT NULL default '',
188 crc32 int(11) NOT NULL default '0',
189 lang varchar(32) NOT NULL default '',
190 charset varchar(40) NOT NULL default '',
191 header_date datetime default NULL,
192 header_subj text NOT NULL,
193 header_from text NOT NULL,
194 header_group text NOT NULL,
195 header_refs text NOT NULL,
196 msg_id text NOT NULL,
197 PRIMARY KEY (rec_id),
198 UNIQUE KEY url (url),
199 KEY key_crc (crc32)
200) TYPE=MyISAM;
201
202--
203-- Dumping data for table 'url'
204--
205
206
207
This page took 0.103816 seconds and 4 git commands to generate.