Ticket #2142: mythconverg.orig.sql

File mythconverg.orig.sql, 52.2 KB (added by anonymous, 19 years ago)
Line 
1-- MySQL dump 10.10
2--
3-- Host: localhost Database: mythconverg
4-- ------------------------------------------------------
5-- Server version 5.0.22
6
7/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
8/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
9/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
10/*!40101 SET NAMES utf8 */;
11/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
12/*!40103 SET TIME_ZONE='+00:00' */;
13/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
14/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
15/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
16/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
17
18--
19-- Table structure for table `callsignnetworkmap`
20--
21
22DROP TABLE IF EXISTS `callsignnetworkmap`;
23CREATE TABLE `callsignnetworkmap` (
24 `id` int(11) NOT NULL auto_increment,
25 `callsign` varchar(20) NOT NULL default '',
26 `network` varchar(20) NOT NULL default '',
27 PRIMARY KEY (`id`),
28 UNIQUE KEY `callsign` (`callsign`)
29) ENGINE=MyISAM DEFAULT CHARSET=latin1;
30
31--
32-- Dumping data for table `callsignnetworkmap`
33--
34
35
36/*!40000 ALTER TABLE `callsignnetworkmap` DISABLE KEYS */;
37LOCK TABLES `callsignnetworkmap` WRITE;
38UNLOCK TABLES;
39/*!40000 ALTER TABLE `callsignnetworkmap` ENABLE KEYS */;
40
41--
42-- Table structure for table `capturecard`
43--
44
45DROP TABLE IF EXISTS `capturecard`;
46CREATE TABLE `capturecard` (
47 `cardid` int(10) unsigned NOT NULL auto_increment,
48 `videodevice` varchar(128) default NULL,
49 `audiodevice` varchar(128) default NULL,
50 `vbidevice` varchar(128) default NULL,
51 `cardtype` varchar(32) default 'V4L',
52 `defaultinput` varchar(32) default 'Television',
53 `audioratelimit` int(11) default NULL,
54 `hostname` varchar(255) default NULL,
55 `dvb_swfilter` int(11) default '0',
56 `dvb_recordts` int(11) default '1',
57 `dvb_sat_type` int(11) NOT NULL default '0',
58 `dvb_wait_for_seqstart` int(11) NOT NULL default '1',
59 `skipbtaudio` tinyint(1) default '0',
60 `dvb_on_demand` tinyint(4) NOT NULL default '0',
61 `dvb_diseqc_type` smallint(6) default NULL,
62 `firewire_port` int(10) unsigned NOT NULL default '0',
63 `firewire_node` int(10) unsigned NOT NULL default '2',
64 `firewire_speed` int(10) unsigned NOT NULL default '0',
65 `firewire_model` varchar(32) default NULL,
66 `firewire_connection` int(10) unsigned NOT NULL default '0',
67 `dvb_hw_decoder` int(11) default '0',
68 `dbox2_port` int(10) unsigned NOT NULL default '31338',
69 `dbox2_httpport` int(10) unsigned NOT NULL default '80',
70 `dbox2_host` varchar(32) default NULL,
71 `signal_timeout` int(11) NOT NULL default '1000',
72 `channel_timeout` int(11) NOT NULL default '3000',
73 `parentid` int(10) NOT NULL default '0',
74 `dvb_tuning_delay` int(10) unsigned NOT NULL default '0',
75 `contrast` int(11) NOT NULL default '0',
76 `brightness` int(11) NOT NULL default '0',
77 `colour` int(11) NOT NULL default '0',
78 `hue` int(11) NOT NULL default '0',
79 `diseqcid` int(10) unsigned default NULL,
80 PRIMARY KEY (`cardid`)
81) ENGINE=MyISAM DEFAULT CHARSET=latin1;
82
83--
84-- Dumping data for table `capturecard`
85--
86
87
88/*!40000 ALTER TABLE `capturecard` DISABLE KEYS */;
89LOCK TABLES `capturecard` WRITE;
90INSERT INTO `capturecard` VALUES (1,'0','','','DVB','DVBInput',NULL,'zenslack',0,1,0,1,0,0,NULL,0,2,0,NULL,0,0,31338,80,NULL,60000,62500,0,0,0,0,0,0,1);
91UNLOCK TABLES;
92/*!40000 ALTER TABLE `capturecard` ENABLE KEYS */;
93
94--
95-- Table structure for table `cardinput`
96--
97
98DROP TABLE IF EXISTS `cardinput`;
99CREATE TABLE `cardinput` (
100 `cardinputid` int(10) unsigned NOT NULL auto_increment,
101 `cardid` int(10) unsigned NOT NULL default '0',
102 `sourceid` int(10) unsigned NOT NULL default '0',
103 `inputname` varchar(32) NOT NULL default '',
104 `externalcommand` varchar(128) default NULL,
105 `preference` int(11) NOT NULL default '0',
106 `shareable` char(1) default 'N',
107 `tunechan` varchar(10) default NULL,
108 `startchan` varchar(10) default NULL,
109 `freetoaironly` tinyint(1) default '1',
110 `diseqc_port` smallint(6) default NULL,
111 `diseqc_pos` float default NULL,
112 `lnb_lof_switch` int(11) default '11700000',
113 `lnb_lof_hi` int(11) default '10600000',
114 `lnb_lof_lo` int(11) default '9750000',
115 `displayname` varchar(64) NOT NULL default '',
116 `radioservices` tinyint(1) default '1',
117 `childcardid` int(10) NOT NULL default '0',
118 `dishnet_eit` tinyint(1) NOT NULL default '0',
119 `recpriority` int(11) NOT NULL default '0',
120 PRIMARY KEY (`cardinputid`)
121) ENGINE=MyISAM DEFAULT CHARSET=latin1;
122
123--
124-- Dumping data for table `cardinput`
125--
126
127
128/*!40000 ALTER TABLE `cardinput` DISABLE KEYS */;
129LOCK TABLES `cardinput` WRITE;
130INSERT INTO `cardinput` VALUES (1,1,1,'DVBInput',NULL,0,'N',NULL,'1',0,NULL,NULL,11700000,10600000,9750000,'',1,0,0,0);
131UNLOCK TABLES;
132/*!40000 ALTER TABLE `cardinput` ENABLE KEYS */;
133
134--
135-- Table structure for table `channel`
136--
137
138DROP TABLE IF EXISTS `channel`;
139CREATE TABLE `channel` (
140 `chanid` int(10) unsigned NOT NULL default '0',
141 `channum` varchar(10) NOT NULL default '',
142 `freqid` varchar(10) default NULL,
143 `sourceid` int(10) unsigned default NULL,
144 `callsign` varchar(20) NOT NULL default '',
145 `name` varchar(64) NOT NULL default '',
146 `icon` varchar(255) NOT NULL default 'none',
147 `finetune` int(11) default NULL,
148 `videofilters` varchar(255) NOT NULL default '',
149 `xmltvid` varchar(64) NOT NULL default '',
150 `recpriority` int(10) NOT NULL default '0',
151 `contrast` int(11) default '32768',
152 `brightness` int(11) default '32768',
153 `colour` int(11) default '32768',
154 `hue` int(11) default '32768',
155 `tvformat` varchar(10) NOT NULL default 'Default',
156 `commfree` tinyint(4) NOT NULL default '0',
157 `visible` tinyint(1) NOT NULL default '1',
158 `outputfilters` varchar(255) NOT NULL default '',
159 `useonairguide` tinyint(1) default '0',
160 `mplexid` smallint(6) default NULL,
161 `serviceid` mediumint(8) unsigned default NULL,
162 `atscsrcid` int(11) default NULL,
163 `tmoffset` int(11) NOT NULL default '0',
164 `atsc_major_chan` int(10) unsigned NOT NULL default '0',
165 `atsc_minor_chan` int(10) unsigned NOT NULL default '0',
166 PRIMARY KEY (`chanid`),
167 KEY `channel_src` (`channum`,`sourceid`)
168) ENGINE=MyISAM DEFAULT CHARSET=latin1;
169
170--
171-- Dumping data for table `channel`
172--
173
174
175/*!40000 ALTER TABLE `channel` DISABLE KEYS */;
176LOCK TABLES `channel` WRITE;
177INSERT INTO `channel` VALUES (29130,'28130',NULL,1,'Test-R','Test-R','',NULL,'','',0,32768,32768,32768,32768,'Default',0,1,'',0,27,28130,NULL,0,0,0),(29107,'28107',NULL,1,'Bayerisches FS','Bayerisches FS','',NULL,'','',0,32768,32768,32768,32768,'Default',0,1,'',1,27,28107,NULL,0,0,0),(29111,'28111',NULL,1,'WDR Köln','WDR Köln','',NULL,'','',0,32768,32768,32768,32768,'Default',0,1,'',1,27,28111,NULL,0,0,0),(29109,'28109',NULL,1,'arte','arte','',NULL,'','',0,32768,32768,32768,32768,'Default',0,1,'',1,27,28109,NULL,0,0,0),
178(29106,'1',NULL,1,'Das Erste','Das Erste','',NULL,'','',0,32768,32768,32768,32768,'Default',0,1,'',1,27,28106,NULL,0,0,0), (29108,'28108',NULL,1,'hr-fernsehen','hr-fernsehen','',NULL,'','',0,32768,32768,32768,32768,'Default',0,1,'',1,27,28108,NULL,0,0,0),(29112,'28112',NULL,1,'BR-alpha','BR-alpha','',NULL,'','',0,32768,32768,32768,32768,'Default',0,1,'',1,27,28112,NULL,0,0,0),(29113,'28113',NULL,1,'SÜDWEST Ferns. BW','SÜDWEST Ferns. BW','',NULL,'','',0,32768,32768,32768,32768,'Default',0,1,'',1,27,28113,NULL,0,0,0),(29114,'28114',NULL,1,'Phoenix','Phoenix','',NULL,'','',0,32768,32768,32768,32768,'Default',0,1,'',1,27,28114,NULL,0,0,0),(29007,'28007',NULL,1,'3sat','3sat','',NULL,'','',0,32768,32768,32768,32768,'Default',0,1,'',1,28,28007,NULL,0,0,0),(29012,'28012',NULL,1,'DKULTUR','DKULTUR','',NULL,'','',0,32768,32768,32768,32768,'Default',0,1,'',1,28,28012,NULL,0,0,0),(29013,'28013',NULL,1,'DLF','DLF','',NULL,'','',0,32768,32768,32768,32768,'Default',0,1,'',1,28,28013,NULL,0,0,0),(29008,'28008',NULL,1,'KiKa','KiKa','',NULL,'','',0,32768,32768,32768,32768,'Default',0,1,'',1,28,28008,NULL,0,0,0),
179(29006,'2',NULL,1,'ZDF','ZDF','',NULL,'','',0,32768,32768,32768,32768,'Default',0,1,'',1,28,28006,NULL,0,0,0), (29014,'28014',NULL,1,'ZDFdokukanal','ZDFdokukanal','',NULL,'','',0,32768,32768,32768,32768,'Default',0,1,'',1,28,28014,NULL,0,0,0),(29011,'28011',NULL,1,'ZDFinfokanal','ZDFinfokanal','',NULL,'','',0,32768,32768,32768,32768,'Default',0,1,'',1,28,28011,NULL,0,0,0),(29016,'28016',NULL,1,'ZDFtheaterkanal','ZDFtheaterkanal','',NULL,'','',0,32768,32768,32768,32768,'Default',0,1,'',1,28,28016,NULL,0,0,0);
180UNLOCK TABLES;
181/*!40000 ALTER TABLE `channel` ENABLE KEYS */;
182
183--
184-- Table structure for table `codecparams`
185--
186
187DROP TABLE IF EXISTS `codecparams`;
188CREATE TABLE `codecparams` (
189 `profile` int(10) unsigned NOT NULL default '0',
190 `name` varchar(128) NOT NULL default '',
191 `value` varchar(128) default NULL,
192 PRIMARY KEY (`profile`,`name`)
193) ENGINE=MyISAM DEFAULT CHARSET=latin1;
194
195--
196-- Dumping data for table `codecparams`
197--
198
199
200/*!40000 ALTER TABLE `codecparams` DISABLE KEYS */;
201LOCK TABLES `codecparams` WRITE;
202UNLOCK TABLES;
203/*!40000 ALTER TABLE `codecparams` ENABLE KEYS */;
204
205--
206-- Table structure for table `credits`
207--
208
209DROP TABLE IF EXISTS `credits`;
210CREATE TABLE `credits` (
211 `person` mediumint(8) unsigned NOT NULL default '0',
212 `chanid` int(10) unsigned NOT NULL default '0',
213 `starttime` datetime NOT NULL default '0000-00-00 00:00:00',
214 `role` set('actor','director','producer','executive_producer','writer','guest_star','host','adapter','presenter','commentator','guest') NOT NULL default '',
215 UNIQUE KEY `chanid` (`chanid`,`starttime`,`person`,`role`),
216 KEY `person` (`person`,`role`)
217) ENGINE=MyISAM DEFAULT CHARSET=latin1;
218
219--
220-- Dumping data for table `credits`
221--
222
223
224/*!40000 ALTER TABLE `credits` DISABLE KEYS */;
225LOCK TABLES `credits` WRITE;
226UNLOCK TABLES;
227/*!40000 ALTER TABLE `credits` ENABLE KEYS */;
228
229--
230-- Table structure for table `customexample`
231--
232
233DROP TABLE IF EXISTS `customexample`;
234CREATE TABLE `customexample` (
235 `rulename` varchar(64) NOT NULL,
236 `fromclause` text NOT NULL,
237 `whereclause` text NOT NULL,
238 PRIMARY KEY (`rulename`)
239) ENGINE=MyISAM DEFAULT CHARSET=latin1;
240
241--
242-- Dumping data for table `customexample`
243--
244
245
246/*!40000 ALTER TABLE `customexample` DISABLE KEYS */;
247LOCK TABLES `customexample` WRITE;
248UNLOCK TABLES;
249/*!40000 ALTER TABLE `customexample` ENABLE KEYS */;
250
251--
252-- Table structure for table `diseqc_config`
253--
254
255DROP TABLE IF EXISTS `diseqc_config`;
256CREATE TABLE `diseqc_config` (
257 `cardinputid` int(10) unsigned NOT NULL,
258 `diseqcid` int(10) unsigned NOT NULL,
259 `value` varchar(16) NOT NULL default '',
260 KEY `id` (`cardinputid`)
261) ENGINE=MyISAM DEFAULT CHARSET=latin1;
262
263--
264-- Dumping data for table `diseqc_config`
265--
266
267
268/*!40000 ALTER TABLE `diseqc_config` DISABLE KEYS */;
269LOCK TABLES `diseqc_config` WRITE;
270UNLOCK TABLES;
271/*!40000 ALTER TABLE `diseqc_config` ENABLE KEYS */;
272
273--
274-- Table structure for table `diseqc_tree`
275--
276
277DROP TABLE IF EXISTS `diseqc_tree`;
278CREATE TABLE `diseqc_tree` (
279 `diseqcid` int(10) unsigned NOT NULL auto_increment,
280 `parentid` int(10) unsigned default NULL,
281 `ordinal` tinyint(3) unsigned NOT NULL,
282 `type` varchar(16) NOT NULL default '',
283 `subtype` varchar(16) NOT NULL default '',
284 `description` varchar(32) NOT NULL default '',
285 `switch_ports` tinyint(3) unsigned NOT NULL default '0',
286 `rotor_hi_speed` float NOT NULL default '0',
287 `rotor_lo_speed` float NOT NULL default '0',
288 `rotor_positions` varchar(255) NOT NULL default '',
289 `lnb_lof_switch` int(10) NOT NULL default '0',
290 `lnb_lof_hi` int(10) NOT NULL default '0',
291 `lnb_lof_lo` int(10) NOT NULL default '0',
292 PRIMARY KEY (`diseqcid`),
293 KEY `parentid` (`parentid`)
294) ENGINE=MyISAM DEFAULT CHARSET=latin1;
295
296--
297-- Dumping data for table `diseqc_tree`
298--
299
300
301/*!40000 ALTER TABLE `diseqc_tree` DISABLE KEYS */;
302LOCK TABLES `diseqc_tree` WRITE;
303INSERT INTO `diseqc_tree` VALUES (1,NULL,0,'lnb','voltage_tone','LNB',0,0,0,'',11700000,10600000,9750000);
304UNLOCK TABLES;
305/*!40000 ALTER TABLE `diseqc_tree` ENABLE KEYS */;
306
307--
308-- Table structure for table `dtv_multiplex`
309--
310
311DROP TABLE IF EXISTS `dtv_multiplex`;
312CREATE TABLE `dtv_multiplex` (
313 `mplexid` smallint(6) NOT NULL auto_increment,
314 `sourceid` smallint(6) default NULL,
315 `transportid` int(11) default NULL,
316 `networkid` int(11) default NULL,
317 `frequency` int(11) default NULL,
318 `inversion` char(1) default 'a',
319 `symbolrate` int(11) default NULL,
320 `fec` varchar(10) default 'auto',
321 `polarity` char(1) default NULL,
322 `modulation` varchar(10) default 'auto',
323 `bandwidth` char(1) default 'a',
324 `lp_code_rate` varchar(10) default 'auto',
325 `transmission_mode` char(1) default 'a',
326 `guard_interval` varchar(10) default 'auto',
327 `visible` smallint(1) NOT NULL default '0',
328 `constellation` varchar(10) default 'auto',
329 `hierarchy` varchar(10) default 'auto',
330 `hp_code_rate` varchar(10) default 'auto',
331 `sistandard` varchar(10) default 'dvb',
332 `serviceversion` smallint(6) default '33',
333 `updatetimestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
334 PRIMARY KEY (`mplexid`)
335) ENGINE=MyISAM DEFAULT CHARSET=latin1;
336
337--
338-- Dumping data for table `dtv_multiplex`
339--
340
341
342/*!40000 ALTER TABLE `dtv_multiplex` DISABLE KEYS */;
343LOCK TABLES `dtv_multiplex` WRITE;
344INSERT INTO `dtv_multiplex` VALUES (1,1,1114,1,12640000,'a',22000000,'5/6','v','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:33'),(2,1,1032,1,11685500,'a',22000000,'5/6','v','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:33'),(3,1,1110,1,12581000,'a',22000000,'5/6','v','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:33'),(4,1,1273,1,11875500,'a',27500000,'3/4','h','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:33'),(5,1,1034,1,10979000,'a',22000000,'5/6','v','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:33'),(6,1,1060,1,10876500,'a',22000000,'5/6','v','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(7,1,1107,1,12544750,'a',22000000,'5/6','h','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(8,1,1053,1,10773250,'a',22000000,'5/6','h','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(9,1,1072,1,11856000,'a',27500000,'3/4','v','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(10,1,1042,1,11097000,'a',22000000,'5/6','v','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(11,1,1054,1,10788000,'a',22000000,'5/6','v','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(12,1,1020,1,11508500,'a',22000000,'5/6','v','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(13,1,1058,1,10847000,'a',22000000,'5/6','v','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(14,1,1056,1,10817500,'a',22000000,'5/6','v','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(15,1,1115,1,12662750,'a',22000000,'5/6','h','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(16,1,1063,1,10920750,'a',22000000,'5/6','h','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(17,1,1018,1,11479000,'a',22000000,'5/6','v','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(18,1,1120,1,12728500,'a',22000000,'5/6','v','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(19,1,1093,1,12265500,'a',27500000,'3/4','h','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(20,1,1088,1,12168000,'a',27500000,'5/6','v','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(21,1,1031,1,11670750,'a',22000000,'5/6','h','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(22,1,1106,1,12522000,'a',22000000,'2/3','v','auto',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(23,1,6,133,11914500,'a',27500000,'auto','h','auto',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(24,1,1022,1,11538000,'a',22000000,'5/6','v','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(25,1,1102,1,12441000,'a',27500000,'3/4','v','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),(26,1,1112,1,12610500,'a',22000000,'5/6','v','qpsk',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',33,'2006-08-11 10:48:34'),
345(27,1,1101,1,1238037,NULL,NULL,NULL,NULL,'auto',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',19,'2006-08-11 10:48:34'),
346(28,1,1079,1,1355029,NULL,NULL,NULL,NULL,'auto',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,'dvb',3,'2006-08-11 10:49:03');
347UNLOCK TABLES;
348/*!40000 ALTER TABLE `dtv_multiplex` ENABLE KEYS */;
349
350--
351-- Table structure for table `dtv_privatetypes`
352--
353
354DROP TABLE IF EXISTS `dtv_privatetypes`;
355CREATE TABLE `dtv_privatetypes` (
356 `sitype` varchar(4) NOT NULL default '',
357 `networkid` int(11) NOT NULL default '0',
358 `private_type` varchar(20) NOT NULL default '',
359 `private_value` varchar(100) NOT NULL default ''
360) ENGINE=MyISAM DEFAULT CHARSET=latin1;
361
362--
363-- Dumping data for table `dtv_privatetypes`
364--
365
366
367/*!40000 ALTER TABLE `dtv_privatetypes` DISABLE KEYS */;
368LOCK TABLES `dtv_privatetypes` WRITE;
369INSERT INTO `dtv_privatetypes` VALUES ('dvb',9018,'channel_numbers','131'),('dvb',9018,'guide_fixup','2'),('dvb',256,'guide_fixup','1'),('dvb',257,'guide_fixup','1'),('dvb',256,'tv_types','1,150,134,133'),('dvb',257,'tv_types','1,150,134,133'),('dvb',4100,'sdt_mapping','1'),('dvb',4101,'sdt_mapping','1'),('dvb',4102,'sdt_mapping','1'),('dvb',4103,'sdt_mapping','1'),('dvb',4104,'sdt_mapping','1'),('dvb',4105,'sdt_mapping','1'),('dvb',4106,'sdt_mapping','1'),('dvb',4107,'sdt_mapping','1'),('dvb',4097,'sdt_mapping','1'),('dvb',4098,'sdt_mapping','1'),('dvb',4100,'tv_types','1,145,154'),('dvb',4101,'tv_types','1,145,154'),('dvb',4102,'tv_types','1,145,154'),('dvb',4103,'tv_types','1,145,154'),('dvb',4104,'tv_types','1,145,154'),('dvb',4105,'tv_types','1,145,154'),('dvb',4106,'tv_types','1,145,154'),('dvb',4107,'tv_types','1,145,154'),('dvb',4097,'tv_types','1,145,154'),('dvb',4098,'tv_types','1,145,154'),('dvb',4100,'guide_fixup','1'),('dvb',4101,'guide_fixup','1'),('dvb',4102,'guide_fixup','1'),('dvb',4103,'guide_fixup','1'),('dvb',4104,'guide_fixup','1'),('dvb',4105,'guide_fixup','1'),('dvb',4106,'guide_fixup','1'),('dvb',4107,'guide_fixup','1'),('dvb',4096,'guide_fixup','5'),('dvb',4097,'guide_fixup','1'),('dvb',4098,'guide_fixup','1'),('dvb',94,'tv_types','1,128'),('atsc',1793,'guide_fixup','3'),('dvb',40999,'guide_fixup','4'),('dvb',70,'force_guide_present','yes'),('dvb',70,'guide_ranges','80,80,96,96'),('dvb',4112,'channel_numbers','131'),('dvb',4115,'channel_numbers','131'),('dvb',4116,'channel_numbers','131'),('dvb',12802,'channel_numbers','131'),('dvb',12803,'channel_numbers','131'),('dvb',12829,'channel_numbers','131'),('dvb',40999,'parse_subtitle_list','1070,1308,1041,1306,1307,1030,1016,1131,1068,1069'),('dvb',4096,'guide_fixup','5');
370UNLOCK TABLES;
371/*!40000 ALTER TABLE `dtv_privatetypes` ENABLE KEYS */;
372
373--
374-- Table structure for table `eit_cache`
375--
376
377DROP TABLE IF EXISTS `eit_cache`;
378CREATE TABLE `eit_cache` (
379 `chanid` int(10) NOT NULL,
380 `eventid` smallint(5) unsigned NOT NULL,
381 `tableid` tinyint(3) unsigned NOT NULL,
382 `version` tinyint(3) unsigned NOT NULL,
383 `endtime` int(10) unsigned NOT NULL,
384 PRIMARY KEY (`chanid`,`eventid`)
385) ENGINE=MyISAM DEFAULT CHARSET=latin1;
386
387--
388-- Dumping data for table `eit_cache`
389--
390
391
392/*!40000 ALTER TABLE `eit_cache` DISABLE KEYS */;
393LOCK TABLES `eit_cache` WRITE;
394UNLOCK TABLES;
395/*!40000 ALTER TABLE `eit_cache` ENABLE KEYS */;
396
397--
398-- Table structure for table `favorites`
399--
400
401DROP TABLE IF EXISTS `favorites`;
402CREATE TABLE `favorites` (
403 `favid` int(11) unsigned NOT NULL auto_increment,
404 `userid` int(11) unsigned NOT NULL default '0',
405 `chanid` int(11) unsigned NOT NULL default '0',
406 PRIMARY KEY (`favid`)
407) ENGINE=MyISAM DEFAULT CHARSET=latin1;
408
409--
410-- Dumping data for table `favorites`
411--
412
413
414/*!40000 ALTER TABLE `favorites` DISABLE KEYS */;
415LOCK TABLES `favorites` WRITE;
416UNLOCK TABLES;
417/*!40000 ALTER TABLE `favorites` ENABLE KEYS */;
418
419--
420-- Table structure for table `housekeeping`
421--
422
423DROP TABLE IF EXISTS `housekeeping`;
424CREATE TABLE `housekeeping` (
425 `tag` varchar(64) NOT NULL default '',
426 `lastrun` datetime default NULL,
427 PRIMARY KEY (`tag`)
428) ENGINE=MyISAM DEFAULT CHARSET=latin1;
429
430--
431-- Dumping data for table `housekeeping`
432--
433
434
435/*!40000 ALTER TABLE `housekeeping` DISABLE KEYS */;
436LOCK TABLES `housekeeping` WRITE;
437INSERT INTO `housekeeping` VALUES ('JobQueueCleanup','2006-08-11 12:53:38'),('InUseProgramsCleanup','2006-08-11 12:53:38'),('JobQueueRecover-zenslack','2006-08-11 12:53:38');
438UNLOCK TABLES;
439/*!40000 ALTER TABLE `housekeeping` ENABLE KEYS */;
440
441--
442-- Table structure for table `inuseprograms`
443--
444
445DROP TABLE IF EXISTS `inuseprograms`;
446CREATE TABLE `inuseprograms` (
447 `chanid` int(10) unsigned NOT NULL default '0',
448 `starttime` datetime NOT NULL default '0000-00-00 00:00:00',
449 `recusage` varchar(128) NOT NULL default '',
450 `lastupdatetime` datetime NOT NULL default '0000-00-00 00:00:00',
451 `hostname` varchar(255) NOT NULL default '',
452 KEY `chanid` (`chanid`,`starttime`)
453) ENGINE=MyISAM DEFAULT CHARSET=latin1;
454
455--
456-- Dumping data for table `inuseprograms`
457--
458
459
460/*!40000 ALTER TABLE `inuseprograms` DISABLE KEYS */;
461LOCK TABLES `inuseprograms` WRITE;
462UNLOCK TABLES;
463/*!40000 ALTER TABLE `inuseprograms` ENABLE KEYS */;
464
465--
466-- Table structure for table `jobqueue`
467--
468
469DROP TABLE IF EXISTS `jobqueue`;
470CREATE TABLE `jobqueue` (
471 `id` int(11) NOT NULL auto_increment,
472 `chanid` int(10) NOT NULL default '0',
473 `starttime` datetime NOT NULL default '0000-00-00 00:00:00',
474 `inserttime` datetime NOT NULL default '0000-00-00 00:00:00',
475 `type` int(11) NOT NULL default '0',
476 `cmds` int(11) NOT NULL default '0',
477 `flags` int(11) NOT NULL default '0',
478 `status` int(11) NOT NULL default '0',
479 `statustime` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
480 `hostname` varchar(255) NOT NULL default '',
481 `args` blob NOT NULL,
482 `comment` varchar(128) NOT NULL default '',
483 PRIMARY KEY (`id`),
484 UNIQUE KEY `chanid` (`chanid`,`starttime`,`type`,`inserttime`)
485) ENGINE=MyISAM DEFAULT CHARSET=latin1;
486
487--
488-- Dumping data for table `jobqueue`
489--
490
491
492/*!40000 ALTER TABLE `jobqueue` DISABLE KEYS */;
493LOCK TABLES `jobqueue` WRITE;
494UNLOCK TABLES;
495/*!40000 ALTER TABLE `jobqueue` ENABLE KEYS */;
496
497--
498-- Table structure for table `jumppoints`
499--
500
501DROP TABLE IF EXISTS `jumppoints`;
502CREATE TABLE `jumppoints` (
503 `destination` varchar(128) NOT NULL default '',
504 `description` varchar(255) default NULL,
505 `keylist` varchar(128) default NULL,
506 `hostname` varchar(255) NOT NULL default '',
507 PRIMARY KEY (`destination`,`hostname`)
508) ENGINE=MyISAM DEFAULT CHARSET=latin1;
509
510--
511-- Dumping data for table `jumppoints`
512--
513
514
515/*!40000 ALTER TABLE `jumppoints` DISABLE KEYS */;
516LOCK TABLES `jumppoints` WRITE;
517UNLOCK TABLES;
518/*!40000 ALTER TABLE `jumppoints` ENABLE KEYS */;
519
520--
521-- Table structure for table `keybindings`
522--
523
524DROP TABLE IF EXISTS `keybindings`;
525CREATE TABLE `keybindings` (
526 `context` varchar(32) NOT NULL default '',
527 `action` varchar(32) NOT NULL default '',
528 `description` varchar(255) default NULL,
529 `keylist` varchar(128) default NULL,
530 `hostname` varchar(255) NOT NULL default '',
531 PRIMARY KEY (`context`,`action`,`hostname`)
532) ENGINE=MyISAM DEFAULT CHARSET=latin1;
533
534--
535-- Dumping data for table `keybindings`
536--
537
538
539/*!40000 ALTER TABLE `keybindings` DISABLE KEYS */;
540LOCK TABLES `keybindings` WRITE;
541INSERT INTO `keybindings` VALUES ('Global','UP','Up Arrow','Up','zenslack'),('Global','DOWN','Down Arrow','Down','zenslack'),('Global','LEFT','Left Arrow','Left','zenslack'),('Global','RIGHT','Right Arrow','Right','zenslack'),('Global','SELECT','Select','Return,Enter,Space','zenslack'),('Global','ESCAPE','Escape','Esc','zenslack'),('Global','MENU','Pop-up menu','M','zenslack'),('Global','INFO','More information','I','zenslack'),('Global','PAGEUP','Page Up','PgUp','zenslack'),('Global','PAGEDOWN','Page Down','PgDown','zenslack'),('Global','PREVVIEW','Previous View','Home','zenslack'),('Global','NEXTVIEW','Next View','End','zenslack'),('Global','HELP','Help','F1','zenslack'),('Global','EJECT','Eject Removable Media','','zenslack'),('Global','0','0','0','zenslack'),('Global','1','1','1','zenslack'),('Global','2','2','2','zenslack'),('Global','3','3','3','zenslack'),('Global','4','4','4','zenslack'),('Global','5','5','5','zenslack'),('Global','6','6','6','zenslack'),('Global','7','7','7','zenslack'),('Global','8','8','8','zenslack'),('Global','9','9','9','zenslack'),('qt','DELETE','Delete','D','zenslack'),('qt','EDIT','Edit','E','zenslack');
542UNLOCK TABLES;
543/*!40000 ALTER TABLE `keybindings` ENABLE KEYS */;
544
545--
546-- Table structure for table `keyword`
547--
548
549DROP TABLE IF EXISTS `keyword`;
550CREATE TABLE `keyword` (
551 `phrase` varchar(128) NOT NULL default '',
552 `searchtype` int(10) unsigned NOT NULL default '3',
553 UNIQUE KEY `phrase` (`phrase`,`searchtype`)
554) ENGINE=MyISAM DEFAULT CHARSET=latin1;
555
556--
557-- Dumping data for table `keyword`
558--
559
560
561/*!40000 ALTER TABLE `keyword` DISABLE KEYS */;
562LOCK TABLES `keyword` WRITE;
563UNLOCK TABLES;
564/*!40000 ALTER TABLE `keyword` ENABLE KEYS */;
565
566--
567-- Table structure for table `mythlog`
568--
569
570DROP TABLE IF EXISTS `mythlog`;
571CREATE TABLE `mythlog` (
572 `logid` int(10) unsigned NOT NULL auto_increment,
573 `module` varchar(32) NOT NULL default '',
574 `priority` int(11) NOT NULL default '0',
575 `acknowledged` tinyint(1) default '0',
576 `logdate` datetime default NULL,
577 `host` varchar(128) default NULL,
578 `message` varchar(255) NOT NULL default '',
579 `details` text,
580 PRIMARY KEY (`logid`)
581) ENGINE=MyISAM DEFAULT CHARSET=latin1;
582
583--
584-- Dumping data for table `mythlog`
585--
586
587
588/*!40000 ALTER TABLE `mythlog` DISABLE KEYS */;
589LOCK TABLES `mythlog` WRITE;
590UNLOCK TABLES;
591/*!40000 ALTER TABLE `mythlog` ENABLE KEYS */;
592
593--
594-- Table structure for table `networkiconmap`
595--
596
597DROP TABLE IF EXISTS `networkiconmap`;
598CREATE TABLE `networkiconmap` (
599 `id` int(11) NOT NULL auto_increment,
600 `network` varchar(20) NOT NULL default '',
601 `url` varchar(255) NOT NULL default '',
602 PRIMARY KEY (`id`),
603 UNIQUE KEY `network` (`network`)
604) ENGINE=MyISAM DEFAULT CHARSET=latin1;
605
606--
607-- Dumping data for table `networkiconmap`
608--
609
610
611/*!40000 ALTER TABLE `networkiconmap` DISABLE KEYS */;
612LOCK TABLES `networkiconmap` WRITE;
613UNLOCK TABLES;
614/*!40000 ALTER TABLE `networkiconmap` ENABLE KEYS */;
615
616--
617-- Table structure for table `oldfind`
618--
619
620DROP TABLE IF EXISTS `oldfind`;
621CREATE TABLE `oldfind` (
622 `recordid` int(11) NOT NULL default '0',
623 `findid` int(11) NOT NULL default '0',
624 PRIMARY KEY (`recordid`,`findid`)
625) ENGINE=MyISAM DEFAULT CHARSET=latin1;
626
627--
628-- Dumping data for table `oldfind`
629--
630
631
632/*!40000 ALTER TABLE `oldfind` DISABLE KEYS */;
633LOCK TABLES `oldfind` WRITE;
634UNLOCK TABLES;
635/*!40000 ALTER TABLE `oldfind` ENABLE KEYS */;
636
637--
638-- Table structure for table `oldprogram`
639--
640
641DROP TABLE IF EXISTS `oldprogram`;
642CREATE TABLE `oldprogram` (
643 `oldtitle` varchar(128) NOT NULL default '',
644 `airdate` datetime NOT NULL default '0000-00-00 00:00:00',
645 PRIMARY KEY (`oldtitle`)
646) ENGINE=MyISAM DEFAULT CHARSET=latin1;
647
648--
649-- Dumping data for table `oldprogram`
650--
651
652
653/*!40000 ALTER TABLE `oldprogram` DISABLE KEYS */;
654LOCK TABLES `oldprogram` WRITE;
655UNLOCK TABLES;
656/*!40000 ALTER TABLE `oldprogram` ENABLE KEYS */;
657
658--
659-- Table structure for table `oldrecorded`
660--
661
662DROP TABLE IF EXISTS `oldrecorded`;
663CREATE TABLE `oldrecorded` (
664 `chanid` int(10) unsigned NOT NULL default '0',
665 `starttime` datetime NOT NULL default '0000-00-00 00:00:00',
666 `endtime` datetime NOT NULL default '0000-00-00 00:00:00',
667 `title` varchar(128) NOT NULL default '',
668 `subtitle` varchar(128) NOT NULL default '',
669 `description` text NOT NULL,
670 `category` varchar(64) NOT NULL default '',
671 `seriesid` varchar(12) NOT NULL default '',
672 `programid` varchar(20) NOT NULL default '',
673 `findid` int(11) NOT NULL default '0',
674 `recordid` int(11) NOT NULL default '0',
675 `station` varchar(20) NOT NULL default '',
676 `rectype` int(10) unsigned NOT NULL default '0',
677 `duplicate` tinyint(1) NOT NULL default '0',
678 `recstatus` int(11) NOT NULL default '0',
679 `reactivate` smallint(6) NOT NULL default '0',
680 `generic` tinyint(1) default '0',
681 PRIMARY KEY (`station`,`starttime`,`title`),
682 KEY `endtime` (`endtime`),
683 KEY `title` (`title`),
684 KEY `seriesid` (`seriesid`),
685 KEY `programid` (`programid`),
686 KEY `recordid` (`recordid`),
687 KEY `recstatus` (`recstatus`,`programid`,`seriesid`),
688 KEY `recstatus_2` (`recstatus`,`title`,`subtitle`)
689) ENGINE=MyISAM DEFAULT CHARSET=latin1;
690
691--
692-- Dumping data for table `oldrecorded`
693--
694
695
696/*!40000 ALTER TABLE `oldrecorded` DISABLE KEYS */;
697LOCK TABLES `oldrecorded` WRITE;
698UNLOCK TABLES;
699/*!40000 ALTER TABLE `oldrecorded` ENABLE KEYS */;
700
701--
702-- Table structure for table `people`
703--
704
705DROP TABLE IF EXISTS `people`;
706CREATE TABLE `people` (
707 `person` mediumint(8) unsigned NOT NULL auto_increment,
708 `name` char(128) NOT NULL default '',
709 PRIMARY KEY (`person`),
710 UNIQUE KEY `name` (`name`(41))
711) ENGINE=MyISAM DEFAULT CHARSET=latin1;
712
713--
714-- Dumping data for table `people`
715--
716
717
718/*!40000 ALTER TABLE `people` DISABLE KEYS */;
719LOCK TABLES `people` WRITE;
720UNLOCK TABLES;
721/*!40000 ALTER TABLE `people` ENABLE KEYS */;
722
723--
724-- Table structure for table `pidcache`
725--
726
727DROP TABLE IF EXISTS `pidcache`;
728CREATE TABLE `pidcache` (
729 `chanid` smallint(6) NOT NULL default '0',
730 `pid` int(11) NOT NULL default '-1',
731 `tableid` int(11) NOT NULL default '-1',
732 KEY `chanid` (`chanid`)
733) ENGINE=MyISAM DEFAULT CHARSET=latin1;
734
735--
736-- Dumping data for table `pidcache`
737--
738
739
740/*!40000 ALTER TABLE `pidcache` DISABLE KEYS */;
741LOCK TABLES `pidcache` WRITE;
742UNLOCK TABLES;
743/*!40000 ALTER TABLE `pidcache` ENABLE KEYS */;
744
745--
746-- Table structure for table `playgroup`
747--
748
749DROP TABLE IF EXISTS `playgroup`;
750CREATE TABLE `playgroup` (
751 `name` varchar(32) NOT NULL default '',
752 `titlematch` varchar(255) NOT NULL default '',
753 `skipahead` int(11) NOT NULL default '0',
754 `skipback` int(11) NOT NULL default '0',
755 `timestretch` int(11) NOT NULL default '0',
756 `jump` int(11) NOT NULL default '0',
757 PRIMARY KEY (`name`)
758) ENGINE=MyISAM DEFAULT CHARSET=latin1;
759
760--
761-- Dumping data for table `playgroup`
762--
763
764
765/*!40000 ALTER TABLE `playgroup` DISABLE KEYS */;
766LOCK TABLES `playgroup` WRITE;
767INSERT INTO `playgroup` VALUES ('Default','',30,5,100,0);
768UNLOCK TABLES;
769/*!40000 ALTER TABLE `playgroup` ENABLE KEYS */;
770
771--
772-- Table structure for table `profilegroups`
773--
774
775DROP TABLE IF EXISTS `profilegroups`;
776CREATE TABLE `profilegroups` (
777 `id` int(10) unsigned NOT NULL auto_increment,
778 `name` varchar(128) default NULL,
779 `cardtype` varchar(32) NOT NULL default 'V4L',
780 `is_default` int(1) default '0',
781 `hostname` varchar(255) default NULL,
782 PRIMARY KEY (`id`),
783 UNIQUE KEY `name` (`name`,`hostname`)
784) ENGINE=MyISAM DEFAULT CHARSET=latin1;
785
786--
787-- Dumping data for table `profilegroups`
788--
789
790
791/*!40000 ALTER TABLE `profilegroups` DISABLE KEYS */;
792LOCK TABLES `profilegroups` WRITE;
793INSERT INTO `profilegroups` VALUES (1,'Software Encoders (v4l based)','V4L',1,NULL),(2,'MPEG-2 Encoders (PVR-x50, PVR-500)','MPEG',1,NULL),(3,'Hardware MJPEG Encoders (Matrox G200-TV, Miro DC10, etc)','MJPEG',1,NULL),(4,'Hardware HDTV','HDTV',1,NULL),(5,'Hardware DVB Encoders','DVB',1,NULL),(6,'Transcoders','TRANSCODE',1,NULL),(7,'FireWire Input','FIREWIRE',1,NULL),(8,'USB Mpeg-4 Encoder (Plextor ConvertX, etc)','GO7007',1,NULL),(9,'DBOX2 Input','DBOX2',1,NULL),(10,'Freebox Input','Freebox',1,NULL),(11,'HDHomeRun Recorders','HDHOMERUN',1,NULL),(12,'CRC IP Recorders','CRC_IP',1,NULL);
794UNLOCK TABLES;
795/*!40000 ALTER TABLE `profilegroups` ENABLE KEYS */;
796
797--
798-- Table structure for table `program`
799--
800
801DROP TABLE IF EXISTS `program`;
802CREATE TABLE `program` (
803 `chanid` int(10) unsigned NOT NULL default '0',
804 `starttime` datetime NOT NULL default '0000-00-00 00:00:00',
805 `endtime` datetime NOT NULL default '0000-00-00 00:00:00',
806 `title` varchar(128) NOT NULL default '',
807 `subtitle` varchar(128) NOT NULL default '',
808 `description` text NOT NULL,
809 `category` varchar(64) NOT NULL default '',
810 `category_type` varchar(64) NOT NULL default '',
811 `airdate` year(4) NOT NULL default '0000',
812 `stars` float NOT NULL default '0',
813 `previouslyshown` tinyint(4) NOT NULL default '0',
814 `title_pronounce` varchar(128) NOT NULL default '',
815 `stereo` tinyint(1) NOT NULL default '0',
816 `subtitled` tinyint(1) NOT NULL default '0',
817 `hdtv` tinyint(1) NOT NULL default '0',
818 `closecaptioned` tinyint(1) NOT NULL default '0',
819 `partnumber` int(11) NOT NULL default '0',
820 `parttotal` int(11) NOT NULL default '0',
821 `seriesid` varchar(12) NOT NULL default '',
822 `originalairdate` date default NULL,
823 `showtype` varchar(30) NOT NULL default '',
824 `colorcode` varchar(20) NOT NULL default '',
825 `syndicatedepisodenumber` varchar(20) NOT NULL default '',
826 `programid` varchar(20) NOT NULL default '',
827 `manualid` int(10) unsigned NOT NULL default '0',
828 `generic` tinyint(1) default '0',
829 `listingsource` int(11) NOT NULL default '0',
830 `first` tinyint(1) NOT NULL default '0',
831 `last` tinyint(1) NOT NULL default '0',
832 PRIMARY KEY (`chanid`,`starttime`,`manualid`),
833 KEY `endtime` (`endtime`),
834 KEY `title` (`title`),
835 KEY `title_pronounce` (`title_pronounce`),
836 KEY `seriesid` (`seriesid`),
837 KEY `programid` (`programid`),
838 KEY `id_start_end` (`chanid`,`starttime`,`endtime`)
839) ENGINE=MyISAM DEFAULT CHARSET=latin1;
840
841--
842-- Dumping data for table `program`
843--
844
845
846/*!40000 ALTER TABLE `program` DISABLE KEYS */;
847LOCK TABLES `program` WRITE;
848UNLOCK TABLES;
849/*!40000 ALTER TABLE `program` ENABLE KEYS */;
850
851--
852-- Table structure for table `programgenres`
853--
854
855DROP TABLE IF EXISTS `programgenres`;
856CREATE TABLE `programgenres` (
857 `chanid` int(10) unsigned NOT NULL default '0',
858 `starttime` datetime NOT NULL default '0000-00-00 00:00:00',
859 `relevance` char(1) NOT NULL default '',
860 `genre` char(30) default NULL,
861 PRIMARY KEY (`chanid`,`starttime`,`relevance`),
862 KEY `genre` (`genre`)
863) ENGINE=MyISAM DEFAULT CHARSET=latin1;
864
865--
866-- Dumping data for table `programgenres`
867--
868
869
870/*!40000 ALTER TABLE `programgenres` DISABLE KEYS */;
871LOCK TABLES `programgenres` WRITE;
872UNLOCK TABLES;
873/*!40000 ALTER TABLE `programgenres` ENABLE KEYS */;
874
875--
876-- Table structure for table `programrating`
877--
878
879DROP TABLE IF EXISTS `programrating`;
880CREATE TABLE `programrating` (
881 `chanid` int(10) unsigned NOT NULL default '0',
882 `starttime` datetime NOT NULL default '0000-00-00 00:00:00',
883 `system` char(8) NOT NULL default '',
884 `rating` char(8) NOT NULL default '',
885 UNIQUE KEY `chanid` (`chanid`,`starttime`,`system`,`rating`),
886 KEY `starttime` (`starttime`,`system`)
887) ENGINE=MyISAM DEFAULT CHARSET=latin1;
888
889--
890-- Dumping data for table `programrating`
891--
892
893
894/*!40000 ALTER TABLE `programrating` DISABLE KEYS */;
895LOCK TABLES `programrating` WRITE;
896UNLOCK TABLES;
897/*!40000 ALTER TABLE `programrating` ENABLE KEYS */;
898
899--
900-- Table structure for table `recgrouppassword`
901--
902
903DROP TABLE IF EXISTS `recgrouppassword`;
904CREATE TABLE `recgrouppassword` (
905 `recgroup` varchar(32) NOT NULL default '',
906 `password` varchar(10) NOT NULL default '',
907 PRIMARY KEY (`recgroup`),
908 UNIQUE KEY `recgroup` (`recgroup`)
909) ENGINE=MyISAM DEFAULT CHARSET=latin1;
910
911--
912-- Dumping data for table `recgrouppassword`
913--
914
915
916/*!40000 ALTER TABLE `recgrouppassword` DISABLE KEYS */;
917LOCK TABLES `recgrouppassword` WRITE;
918UNLOCK TABLES;
919/*!40000 ALTER TABLE `recgrouppassword` ENABLE KEYS */;
920
921--
922-- Table structure for table `record`
923--
924
925DROP TABLE IF EXISTS `record`;
926CREATE TABLE `record` (
927 `recordid` int(10) unsigned NOT NULL auto_increment,
928 `type` int(10) unsigned NOT NULL default '0',
929 `chanid` int(10) unsigned default NULL,
930 `starttime` time NOT NULL default '00:00:00',
931 `startdate` date NOT NULL default '0000-00-00',
932 `endtime` time NOT NULL default '00:00:00',
933 `enddate` date NOT NULL default '0000-00-00',
934 `title` varchar(128) NOT NULL default '',
935 `subtitle` varchar(128) NOT NULL default '',
936 `description` text NOT NULL,
937 `category` varchar(64) NOT NULL default '',
938 `profile` varchar(128) NOT NULL default 'Default',
939 `recpriority` int(10) NOT NULL default '0',
940 `autoexpire` int(11) NOT NULL default '0',
941 `maxepisodes` int(11) NOT NULL default '0',
942 `maxnewest` int(11) NOT NULL default '0',
943 `startoffset` int(11) NOT NULL default '0',
944 `endoffset` int(11) NOT NULL default '0',
945 `recgroup` varchar(32) NOT NULL default 'Default',
946 `dupmethod` int(11) NOT NULL default '6',
947 `dupin` int(11) NOT NULL default '15',
948 `station` varchar(20) NOT NULL default '',
949 `seriesid` varchar(12) NOT NULL default '',
950 `programid` varchar(20) NOT NULL default '',
951 `search` int(10) unsigned NOT NULL default '0',
952 `autotranscode` tinyint(1) NOT NULL default '0',
953 `autocommflag` tinyint(1) NOT NULL default '0',
954 `autouserjob1` tinyint(1) NOT NULL default '0',
955 `autouserjob2` tinyint(1) NOT NULL default '0',
956 `autouserjob3` tinyint(1) NOT NULL default '0',
957 `autouserjob4` tinyint(1) NOT NULL default '0',
958 `findday` tinyint(4) NOT NULL default '0',
959 `findtime` time NOT NULL default '00:00:00',
960 `findid` int(11) NOT NULL default '0',
961 `inactive` tinyint(1) NOT NULL default '0',
962 `parentid` int(11) NOT NULL default '0',
963 `transcoder` int(11) NOT NULL default '0',
964 `tsdefault` float NOT NULL default '1',
965 `playgroup` varchar(32) NOT NULL default 'Default',
966 `prefinput` int(10) NOT NULL default '0',
967 PRIMARY KEY (`recordid`),
968 KEY `chanid` (`chanid`,`starttime`),
969 KEY `title` (`title`),
970 KEY `seriesid` (`seriesid`),
971 KEY `programid` (`programid`)
972) ENGINE=MyISAM DEFAULT CHARSET=latin1;
973
974--
975-- Dumping data for table `record`
976--
977
978
979/*!40000 ALTER TABLE `record` DISABLE KEYS */;
980LOCK TABLES `record` WRITE;
981UNLOCK TABLES;
982/*!40000 ALTER TABLE `record` ENABLE KEYS */;
983
984--
985-- Table structure for table `recorded`
986--
987
988DROP TABLE IF EXISTS `recorded`;
989CREATE TABLE `recorded` (
990 `chanid` int(10) unsigned NOT NULL default '0',
991 `starttime` datetime NOT NULL default '0000-00-00 00:00:00',
992 `endtime` datetime NOT NULL default '0000-00-00 00:00:00',
993 `title` varchar(128) NOT NULL default '',
994 `subtitle` varchar(128) NOT NULL default '',
995 `description` text NOT NULL,
996 `category` varchar(64) NOT NULL default '',
997 `hostname` varchar(255) NOT NULL default '',
998 `bookmark` tinyint(1) NOT NULL default '0',
999 `editing` int(10) unsigned NOT NULL default '0',
1000 `cutlist` tinyint(1) NOT NULL default '0',
1001 `autoexpire` int(11) NOT NULL default '0',
1002 `commflagged` int(10) unsigned NOT NULL default '0',
1003 `recgroup` varchar(32) NOT NULL default 'Default',
1004 `recordid` int(11) default NULL,
1005 `seriesid` varchar(12) NOT NULL default '',
1006 `programid` varchar(20) NOT NULL default '',
1007 `lastmodified` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
1008 `filesize` bigint(20) NOT NULL default '0',
1009 `stars` float NOT NULL default '0',
1010 `previouslyshown` tinyint(1) default '0',
1011 `originalairdate` date default NULL,
1012 `preserve` tinyint(1) NOT NULL default '0',
1013 `findid` int(11) NOT NULL default '0',
1014 `deletepending` tinyint(1) NOT NULL default '0',
1015 `transcoder` int(11) NOT NULL default '0',
1016 `timestretch` float NOT NULL default '1',
1017 `recpriority` int(11) NOT NULL default '0',
1018 `basename` varchar(128) NOT NULL default '',
1019 `progstart` datetime NOT NULL default '0000-00-00 00:00:00',
1020 `progend` datetime NOT NULL default '0000-00-00 00:00:00',
1021 `playgroup` varchar(32) NOT NULL default 'Default',
1022 `profile` varchar(32) NOT NULL default '',
1023 `duplicate` tinyint(1) NOT NULL default '0',
1024 `transcoded` tinyint(1) NOT NULL default '0',
1025 PRIMARY KEY (`chanid`,`starttime`),
1026 KEY `endtime` (`endtime`),
1027 KEY `seriesid` (`seriesid`),
1028 KEY `programid` (`programid`),
1029 KEY `title` (`title`),
1030 KEY `recordid` (`recordid`)
1031) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1032
1033--
1034-- Dumping data for table `recorded`
1035--
1036
1037
1038/*!40000 ALTER TABLE `recorded` DISABLE KEYS */;
1039LOCK TABLES `recorded` WRITE;
1040UNLOCK TABLES;
1041/*!40000 ALTER TABLE `recorded` ENABLE KEYS */;
1042
1043--
1044-- Table structure for table `recordedcredits`
1045--
1046
1047DROP TABLE IF EXISTS `recordedcredits`;
1048CREATE TABLE `recordedcredits` (
1049 `person` mediumint(8) unsigned NOT NULL default '0',
1050 `chanid` int(10) unsigned NOT NULL default '0',
1051 `starttime` datetime NOT NULL default '0000-00-00 00:00:00',
1052 `role` set('actor','director','producer','executive_producer','writer','guest_star','host','adapter','presenter','commentator','guest') NOT NULL default '',
1053 UNIQUE KEY `chanid` (`chanid`,`starttime`,`person`,`role`),
1054 KEY `person` (`person`,`role`)
1055) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1056
1057--
1058-- Dumping data for table `recordedcredits`
1059--
1060
1061
1062/*!40000 ALTER TABLE `recordedcredits` DISABLE KEYS */;
1063LOCK TABLES `recordedcredits` WRITE;
1064UNLOCK TABLES;
1065/*!40000 ALTER TABLE `recordedcredits` ENABLE KEYS */;
1066
1067--
1068-- Table structure for table `recordedmarkup`
1069--
1070
1071DROP TABLE IF EXISTS `recordedmarkup`;
1072CREATE TABLE `recordedmarkup` (
1073 `chanid` int(10) unsigned NOT NULL default '0',
1074 `starttime` datetime NOT NULL default '0000-00-00 00:00:00',
1075 `mark` bigint(20) NOT NULL default '0',
1076 `offset` varchar(32) default NULL,
1077 `type` int(11) NOT NULL default '0',
1078 PRIMARY KEY (`chanid`,`starttime`,`type`,`mark`)
1079) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1080
1081--
1082-- Dumping data for table `recordedmarkup`
1083--
1084
1085
1086/*!40000 ALTER TABLE `recordedmarkup` DISABLE KEYS */;
1087LOCK TABLES `recordedmarkup` WRITE;
1088UNLOCK TABLES;
1089/*!40000 ALTER TABLE `recordedmarkup` ENABLE KEYS */;
1090
1091--
1092-- Table structure for table `recordedprogram`
1093--
1094
1095DROP TABLE IF EXISTS `recordedprogram`;
1096CREATE TABLE `recordedprogram` (
1097 `chanid` int(10) unsigned NOT NULL default '0',
1098 `starttime` datetime NOT NULL default '0000-00-00 00:00:00',
1099 `endtime` datetime NOT NULL default '0000-00-00 00:00:00',
1100 `title` varchar(128) NOT NULL default '',
1101 `subtitle` varchar(128) NOT NULL default '',
1102 `description` text NOT NULL,
1103 `category` varchar(64) NOT NULL default '',
1104 `category_type` varchar(64) NOT NULL default '',
1105 `airdate` year(4) NOT NULL default '0000',
1106 `stars` float unsigned NOT NULL default '0',
1107 `previouslyshown` tinyint(4) NOT NULL default '0',
1108 `title_pronounce` varchar(128) NOT NULL default '',
1109 `stereo` tinyint(1) NOT NULL default '0',
1110 `subtitled` tinyint(1) NOT NULL default '0',
1111 `hdtv` tinyint(1) NOT NULL default '0',
1112 `closecaptioned` tinyint(1) NOT NULL default '0',
1113 `partnumber` int(11) NOT NULL default '0',
1114 `parttotal` int(11) NOT NULL default '0',
1115 `seriesid` varchar(12) NOT NULL default '',
1116 `originalairdate` date default NULL,
1117 `showtype` varchar(30) NOT NULL default '',
1118 `colorcode` varchar(20) NOT NULL default '',
1119 `syndicatedepisodenumber` varchar(20) NOT NULL default '',
1120 `programid` varchar(20) NOT NULL default '',
1121 `manualid` int(10) unsigned NOT NULL default '0',
1122 `generic` tinyint(1) default '0',
1123 `listingsource` int(11) NOT NULL default '0',
1124 `first` tinyint(1) NOT NULL default '0',
1125 `last` tinyint(1) NOT NULL default '0',
1126 PRIMARY KEY (`chanid`,`starttime`,`manualid`),
1127 KEY `endtime` (`endtime`),
1128 KEY `title` (`title`),
1129 KEY `title_pronounce` (`title_pronounce`),
1130 KEY `seriesid` (`seriesid`),
1131 KEY `programid` (`programid`),
1132 KEY `id_start_end` (`chanid`,`starttime`,`endtime`)
1133) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1134
1135--
1136-- Dumping data for table `recordedprogram`
1137--
1138
1139
1140/*!40000 ALTER TABLE `recordedprogram` DISABLE KEYS */;
1141LOCK TABLES `recordedprogram` WRITE;
1142UNLOCK TABLES;
1143/*!40000 ALTER TABLE `recordedprogram` ENABLE KEYS */;
1144
1145--
1146-- Table structure for table `recordedrating`
1147--
1148
1149DROP TABLE IF EXISTS `recordedrating`;
1150CREATE TABLE `recordedrating` (
1151 `chanid` int(10) unsigned NOT NULL default '0',
1152 `starttime` datetime NOT NULL default '0000-00-00 00:00:00',
1153 `system` char(8) NOT NULL default '',
1154 `rating` char(8) NOT NULL default '',
1155 UNIQUE KEY `chanid` (`chanid`,`starttime`,`system`,`rating`),
1156 KEY `starttime` (`starttime`,`system`)
1157) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1158
1159--
1160-- Dumping data for table `recordedrating`
1161--
1162
1163
1164/*!40000 ALTER TABLE `recordedrating` DISABLE KEYS */;
1165LOCK TABLES `recordedrating` WRITE;
1166UNLOCK TABLES;
1167/*!40000 ALTER TABLE `recordedrating` ENABLE KEYS */;
1168
1169--
1170-- Table structure for table `recordedseek`
1171--
1172
1173DROP TABLE IF EXISTS `recordedseek`;
1174CREATE TABLE `recordedseek` (
1175 `chanid` int(10) unsigned NOT NULL default '0',
1176 `starttime` datetime NOT NULL default '0000-00-00 00:00:00',
1177 `mark` bigint(20) NOT NULL default '0',
1178 `offset` varchar(32) default NULL,
1179 `type` int(11) NOT NULL default '0',
1180 PRIMARY KEY (`chanid`,`starttime`,`type`,`mark`)
1181) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1182
1183--
1184-- Dumping data for table `recordedseek`
1185--
1186
1187
1188/*!40000 ALTER TABLE `recordedseek` DISABLE KEYS */;
1189LOCK TABLES `recordedseek` WRITE;
1190UNLOCK TABLES;
1191/*!40000 ALTER TABLE `recordedseek` ENABLE KEYS */;
1192
1193--
1194-- Table structure for table `recordingprofiles`
1195--
1196
1197DROP TABLE IF EXISTS `recordingprofiles`;
1198CREATE TABLE `recordingprofiles` (
1199 `id` int(10) unsigned NOT NULL auto_increment,
1200 `name` varchar(128) default NULL,
1201 `videocodec` varchar(128) default NULL,
1202 `audiocodec` varchar(128) default NULL,
1203 `profilegroup` int(10) unsigned NOT NULL default '0',
1204 PRIMARY KEY (`id`)
1205) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1206
1207--
1208-- Dumping data for table `recordingprofiles`
1209--
1210
1211
1212/*!40000 ALTER TABLE `recordingprofiles` DISABLE KEYS */;
1213LOCK TABLES `recordingprofiles` WRITE;
1214INSERT INTO `recordingprofiles` VALUES (1,'Default',NULL,NULL,1),(2,'Live TV',NULL,NULL,1),(3,'High Quality',NULL,NULL,1),(4,'Low Quality',NULL,NULL,1),(5,'Default',NULL,NULL,2),(6,'Live TV',NULL,NULL,2),(7,'High Quality',NULL,NULL,2),(8,'Low Quality',NULL,NULL,2),(9,'Default',NULL,NULL,3),(10,'Live TV',NULL,NULL,3),(11,'High Quality',NULL,NULL,3),(12,'Low Quality',NULL,NULL,3),(13,'Default',NULL,NULL,4),(14,'Live TV',NULL,NULL,4),(15,'High Quality',NULL,NULL,4),(16,'Low Quality',NULL,NULL,4),(17,'Default',NULL,NULL,5),(18,'Live TV',NULL,NULL,5),(19,'High Quality',NULL,NULL,5),(20,'Low Quality',NULL,NULL,5),(21,'RTjpeg/MPEG4',NULL,NULL,6),(22,'MPEG2',NULL,NULL,6),(23,'Default',NULL,NULL,8),(24,'Live TV',NULL,NULL,8),(25,'High Quality',NULL,NULL,8),(26,'Low Quality',NULL,NULL,8),(27,'High Quality',NULL,NULL,6),(28,'Medium Quality',NULL,NULL,6),(29,'Low Quality',NULL,NULL,6),(30,'Default',NULL,NULL,10),(31,'Live TV',NULL,NULL,10),(32,'High Quality',NULL,NULL,10),(33,'Low Quality',NULL,NULL,10),(34,'Default',NULL,NULL,11),(35,'Live TV',NULL,NULL,11),(36,'High Quality',NULL,NULL,11),(37,'Low Quality',NULL,NULL,11),(38,'Default',NULL,NULL,12),(39,'Live TV',NULL,NULL,12),(40,'High Quality',NULL,NULL,12),(41,'Low Quality',NULL,NULL,12);
1215UNLOCK TABLES;
1216/*!40000 ALTER TABLE `recordingprofiles` ENABLE KEYS */;
1217
1218--
1219-- Table structure for table `recordmatch`
1220--
1221
1222DROP TABLE IF EXISTS `recordmatch`;
1223CREATE TABLE `recordmatch` (
1224 `recordid` int(10) unsigned default NULL,
1225 `chanid` int(10) unsigned default NULL,
1226 `starttime` datetime default NULL,
1227 `manualid` int(10) unsigned default NULL,
1228 KEY `recordid` (`recordid`)
1229) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1230
1231--
1232-- Dumping data for table `recordmatch`
1233--
1234
1235
1236/*!40000 ALTER TABLE `recordmatch` DISABLE KEYS */;
1237LOCK TABLES `recordmatch` WRITE;
1238UNLOCK TABLES;
1239/*!40000 ALTER TABLE `recordmatch` ENABLE KEYS */;
1240
1241--
1242-- Table structure for table `schemalock`
1243--
1244
1245DROP TABLE IF EXISTS `schemalock`;
1246CREATE TABLE `schemalock` (
1247 `schemalock` int(1) default NULL
1248) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1249
1250--
1251-- Dumping data for table `schemalock`
1252--
1253
1254
1255/*!40000 ALTER TABLE `schemalock` DISABLE KEYS */;
1256LOCK TABLES `schemalock` WRITE;
1257UNLOCK TABLES;
1258/*!40000 ALTER TABLE `schemalock` ENABLE KEYS */;
1259
1260--
1261-- Table structure for table `settings`
1262--
1263
1264DROP TABLE IF EXISTS `settings`;
1265CREATE TABLE `settings` (
1266 `value` varchar(128) NOT NULL default '',
1267 `data` text,
1268 `hostname` varchar(255) default NULL,
1269 KEY `value` (`value`,`hostname`)
1270) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1271
1272--
1273-- Dumping data for table `settings`
1274--
1275
1276
1277/*!40000 ALTER TABLE `settings` DISABLE KEYS */;
1278LOCK TABLES `settings` WRITE;
1279INSERT INTO `settings` VALUES ('mythfilldatabaseLastRunStart',NULL,NULL),('mythfilldatabaseLastRunEnd',NULL,NULL),('mythfilldatabaseLastRunStatus',NULL,NULL),('DataDirectMessage',NULL,NULL),('HaveRepeats','0',NULL),('DBSchemaVer','1155',NULL),('DefaultTranscoder','0',NULL),('MythFillSuggestedRunTime','1970-01-01T00:00:00',NULL),('MythFillGrabberSuggestsTime','1',NULL),('Language','DE','zenslack'),('BackendServerIP','127.0.0.1','zenslack'),('BackendServerPort','6543','zenslack'),('BackendStatusPort','6544','zenslack'),('MasterServerIP','127.0.0.1',NULL),('MasterServerPort','6543',NULL),('RecordFilePrefix','/video/store/','zenslack'),('TVFormat','PAL',NULL),('VbiFormat','PAL Teletext',NULL),('FreqTable','europe-west',NULL),('TimeOffset','None',NULL),('MasterBackendOverride','1',NULL),('DeletesFollowLinks','0',NULL),('EITTimeOffset','Auto',NULL),('EITTransportTimeout','5',NULL),('EITIgnoresSource','0',NULL),('EITCrawIdleStart','60',NULL),('startupCommand','',NULL),('blockSDWUwithoutClient','1',NULL),('idleTimeoutSecs','0',NULL),('idleWaitForRecordingTime','15',NULL),('StartupSecsBeforeRecording','120',NULL),('WakeupTimeFormat','hh:mm yyyy-MM-dd',NULL),('SetWakeuptimeCommand','',NULL),('ServerHaltCommand','sudo /sbin/halt -p',NULL),('preSDWUCheckCommand','',NULL),('WOLbackendReconnectWaitTime','0',NULL),('WOLbackendConnectRetry','5',NULL),('WOLbackendCommand','',NULL),('WOLslaveBackendsCommand','',NULL),('JobQueueMaxSimultaneousJobs','1','zenslack'),('JobQueueCheckFrequency','60','zenslack'),('JobQueueWindowStart','00:00','zenslack'),('JobQueueWindowEnd','23:59','zenslack'),('JobQueueCPU','0','zenslack'),('JobAllowCommFlag','1','zenslack'),('JobAllowTranscode','1','zenslack'),('JobAllowUserJob1','0','zenslack'),('JobAllowUserJob2','0','zenslack'),('JobAllowUserJob3','0','zenslack'),('JobAllowUserJob4','0','zenslack'),('JobsRunOnRecordHost','0',NULL),('AutoCommflagWhileRecording','0',NULL),('JobQueueCommFlagCommand','mythcommflag',NULL),('JobQueueTranscodeCommand','mythtranscode',NULL),('AutoTranscodeBeforeAutoCommflag','0',NULL),('SaveTranscoding','0',NULL),('UserJobDesc1','User Job #1',NULL),('UserJob1','',NULL),('UserJobDesc2','User Job #2',NULL),('UserJob2','',NULL),('UserJobDesc3','User Job #3',NULL),('UserJob3','',NULL),('UserJobDesc4','User Job #4',NULL),('UserJob4','',NULL),('upnp:UDN:urn:schemas-upnp-org:device:MediaServer:1','10896a27-7a3d-4e5c-9afb-655f5429d3ef','zenslack');
1280UNLOCK TABLES;
1281/*!40000 ALTER TABLE `settings` ENABLE KEYS */;
1282
1283--
1284-- Table structure for table `tvchain`
1285--
1286
1287DROP TABLE IF EXISTS `tvchain`;
1288CREATE TABLE `tvchain` (
1289 `chanid` int(10) unsigned NOT NULL default '0',
1290 `starttime` datetime NOT NULL default '0000-00-00 00:00:00',
1291 `chainid` varchar(128) NOT NULL default '',
1292 `chainpos` int(10) NOT NULL default '0',
1293 `discontinuity` tinyint(1) NOT NULL default '0',
1294 `watching` int(10) NOT NULL default '0',
1295 `hostprefix` varchar(128) NOT NULL default '',
1296 `cardtype` varchar(32) NOT NULL default 'V4L',
1297 `input` varchar(32) NOT NULL default '',
1298 `channame` varchar(32) NOT NULL default '',
1299 `endtime` datetime NOT NULL default '0000-00-00 00:00:00',
1300 PRIMARY KEY (`chanid`,`starttime`)
1301) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1302
1303--
1304-- Dumping data for table `tvchain`
1305--
1306
1307
1308/*!40000 ALTER TABLE `tvchain` DISABLE KEYS */;
1309LOCK TABLES `tvchain` WRITE;
1310UNLOCK TABLES;
1311/*!40000 ALTER TABLE `tvchain` ENABLE KEYS */;
1312
1313--
1314-- Table structure for table `videobookmarks`
1315--
1316
1317DROP TABLE IF EXISTS `videobookmarks`;
1318CREATE TABLE `videobookmarks` (
1319 `filename` varchar(255) NOT NULL default '',
1320 `bookmark` varchar(128) default NULL,
1321 PRIMARY KEY (`filename`)
1322) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1323
1324--
1325-- Dumping data for table `videobookmarks`
1326--
1327
1328
1329/*!40000 ALTER TABLE `videobookmarks` DISABLE KEYS */;
1330LOCK TABLES `videobookmarks` WRITE;
1331UNLOCK TABLES;
1332/*!40000 ALTER TABLE `videobookmarks` ENABLE KEYS */;
1333
1334--
1335-- Table structure for table `videosource`
1336--
1337
1338DROP TABLE IF EXISTS `videosource`;
1339CREATE TABLE `videosource` (
1340 `sourceid` int(10) unsigned NOT NULL auto_increment,
1341 `name` varchar(128) NOT NULL default '',
1342 `xmltvgrabber` varchar(128) default NULL,
1343 `userid` varchar(128) NOT NULL default '',
1344 `freqtable` varchar(16) NOT NULL default 'default',
1345 `lineupid` varchar(64) default NULL,
1346 `password` varchar(64) default NULL,
1347 `useeit` smallint(6) NOT NULL default '0',
1348 PRIMARY KEY (`sourceid`),
1349 UNIQUE KEY `name` (`name`)
1350) ENGINE=MyISAM DEFAULT CHARSET=latin1;
1351
1352--
1353-- Dumping data for table `videosource`
1354--
1355
1356
1357/*!40000 ALTER TABLE `videosource` DISABLE KEYS */;
1358LOCK TABLES `videosource` WRITE;
1359INSERT INTO `videosource` VALUES (1,'dvb','eitonly','','default',NULL,NULL,1);
1360UNLOCK TABLES;
1361/*!40000 ALTER TABLE `videosource` ENABLE KEYS */;
1362/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
1363
1364/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
1365/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
1366/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
1367/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
1368/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
1369/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
1370/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
1371