/* * MythTV raw SQL creation file. */ -- #################################################################### -- -- Drop any initial database: DROP DATABASE IF EXISTS mythconverg; -- #################################################################### -- -- Create an empty new database: CREATE DATABASE mythconverg; GRANT ALL ON mythconverg.* TO mythtv@localhost IDENTIFIED BY "mythtv"; FLUSH PRIVILEGES; GRANT CREATE TEMPORARY TABLES ON mythconverg.* TO mythtv@localhost IDENTIFIED BY "mythtv"; FLUSH PRIVILEGES; USE mythconverg; -- #################################################################### -- -- Create all the tables: -- MySQL dump 10.11 -- -- Host: localhost Database: mythconverg -- ------------------------------------------------------ -- Server version 5.0.75 /*!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 `archiveitems` -- DROP TABLE IF EXISTS `archiveitems`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `archiveitems` ( `intid` int(10) unsigned NOT NULL auto_increment, `type` set('Recording','Video','File') default NULL, `title` varchar(128) default NULL, `subtitle` varchar(128) default NULL, `description` text, `startdate` varchar(30) default NULL, `starttime` varchar(30) default NULL, `size` bigint(20) unsigned NOT NULL, `filename` text NOT NULL, `hascutlist` tinyint(1) NOT NULL default '0', `cutlist` text, PRIMARY KEY (`intid`), KEY `title` (`title`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `archiveitems` -- LOCK TABLES `archiveitems` WRITE; /*!40000 ALTER TABLE `archiveitems` DISABLE KEYS */; /*!40000 ALTER TABLE `archiveitems` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `callsignnetworkmap` -- DROP TABLE IF EXISTS `callsignnetworkmap`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `callsignnetworkmap` ( `id` int(11) NOT NULL auto_increment, `callsign` varchar(20) NOT NULL default '', `network` varchar(20) NOT NULL default '', PRIMARY KEY (`id`), UNIQUE KEY `callsign` (`callsign`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `callsignnetworkmap` -- LOCK TABLES `callsignnetworkmap` WRITE; /*!40000 ALTER TABLE `callsignnetworkmap` DISABLE KEYS */; /*!40000 ALTER TABLE `callsignnetworkmap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `capturecard` -- DROP TABLE IF EXISTS `capturecard`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `capturecard` ( `cardid` int(10) unsigned NOT NULL auto_increment, `videodevice` varchar(128) default NULL, `audiodevice` varchar(128) default NULL, `vbidevice` varchar(128) default NULL, `cardtype` varchar(32) default 'V4L', `defaultinput` varchar(32) default 'Television', `audioratelimit` int(11) default NULL, `hostname` varchar(255) default NULL, `dvb_swfilter` int(11) default '0', `dvb_sat_type` int(11) NOT NULL default '0', `dvb_wait_for_seqstart` int(11) NOT NULL default '1', `skipbtaudio` tinyint(1) default '0', `dvb_on_demand` tinyint(4) NOT NULL default '0', `dvb_diseqc_type` smallint(6) default NULL, `firewire_port` int(10) unsigned NOT NULL default '0', `firewire_node` int(10) unsigned NOT NULL default '2', `firewire_speed` int(10) unsigned NOT NULL default '0', `firewire_model` varchar(32) default NULL, `firewire_connection` int(10) unsigned NOT NULL default '0', `dbox2_port` int(10) unsigned NOT NULL default '31338', `dbox2_httpport` int(10) unsigned NOT NULL default '80', `dbox2_host` varchar(32) default NULL, `signal_timeout` int(11) NOT NULL default '1000', `channel_timeout` int(11) NOT NULL default '3000', `dvb_tuning_delay` int(10) unsigned NOT NULL default '0', `contrast` int(11) NOT NULL default '0', `brightness` int(11) NOT NULL default '0', `colour` int(11) NOT NULL default '0', `hue` int(11) NOT NULL default '0', `diseqcid` int(10) unsigned default NULL, `dvb_eitscan` tinyint(1) NOT NULL default '1', PRIMARY KEY (`cardid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `capturecard` -- LOCK TABLES `capturecard` WRITE; /*!40000 ALTER TABLE `capturecard` DISABLE KEYS */; /*!40000 ALTER TABLE `capturecard` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cardinput` -- DROP TABLE IF EXISTS `cardinput`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `cardinput` ( `cardinputid` int(10) unsigned NOT NULL auto_increment, `cardid` int(10) unsigned NOT NULL default '0', `sourceid` int(10) unsigned NOT NULL default '0', `inputname` varchar(32) NOT NULL default '', `externalcommand` varchar(128) default NULL, `preference` int(11) NOT NULL default '0', `shareable` char(1) default 'N', `tunechan` varchar(10) default NULL, `startchan` varchar(10) default NULL, `freetoaironly` tinyint(1) default '1', `diseqc_port` smallint(6) default NULL, `diseqc_pos` float default NULL, `lnb_lof_switch` int(11) default '11700000', `lnb_lof_hi` int(11) default '10600000', `lnb_lof_lo` int(11) default '9750000', `displayname` varchar(64) NOT NULL default '', `radioservices` tinyint(1) default '1', `dishnet_eit` tinyint(1) NOT NULL default '0', `recpriority` int(11) NOT NULL default '0', `quicktune` tinyint(4) NOT NULL default '0', PRIMARY KEY (`cardinputid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `cardinput` -- LOCK TABLES `cardinput` WRITE; /*!40000 ALTER TABLE `cardinput` DISABLE KEYS */; /*!40000 ALTER TABLE `cardinput` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `channel` -- DROP TABLE IF EXISTS `channel`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `channel` ( `chanid` int(10) unsigned NOT NULL default '0', `channum` varchar(10) NOT NULL default '', `freqid` varchar(10) default NULL, `sourceid` int(10) unsigned default NULL, `callsign` varchar(20) NOT NULL default '', `name` varchar(64) NOT NULL default '', `icon` varchar(255) NOT NULL default 'none', `finetune` int(11) default NULL, `videofilters` varchar(255) NOT NULL default '', `xmltvid` varchar(64) NOT NULL default '', `recpriority` int(10) NOT NULL default '0', `contrast` int(11) default '32768', `brightness` int(11) default '32768', `colour` int(11) default '32768', `hue` int(11) default '32768', `tvformat` varchar(10) NOT NULL default 'Default', `commfree` tinyint(4) NOT NULL default '0', `visible` tinyint(1) NOT NULL default '1', `outputfilters` varchar(255) NOT NULL default '', `useonairguide` tinyint(1) default '0', `mplexid` smallint(6) default NULL, `serviceid` mediumint(8) unsigned default NULL, `atscsrcid` int(11) default NULL, `tmoffset` int(11) NOT NULL default '0', `atsc_major_chan` int(10) unsigned NOT NULL default '0', `atsc_minor_chan` int(10) unsigned NOT NULL default '0', `last_record` datetime NOT NULL, `default_authority` varchar(32) NOT NULL default '', `commmethod` int(11) NOT NULL default '-1', PRIMARY KEY (`chanid`), KEY `channel_src` (`channum`,`sourceid`), KEY `sourceid` (`sourceid`,`xmltvid`,`chanid`), KEY `visible` (`visible`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `channel` -- LOCK TABLES `channel` WRITE; /*!40000 ALTER TABLE `channel` DISABLE KEYS */; /*!40000 ALTER TABLE `channel` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `codecparams` -- DROP TABLE IF EXISTS `codecparams`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `codecparams` ( `profile` int(10) unsigned NOT NULL default '0', `name` varchar(128) NOT NULL default '', `value` varchar(128) default NULL, PRIMARY KEY (`profile`,`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `codecparams` -- LOCK TABLES `codecparams` WRITE; /*!40000 ALTER TABLE `codecparams` DISABLE KEYS */; /*!40000 ALTER TABLE `codecparams` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `credits` -- DROP TABLE IF EXISTS `credits`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `credits` ( `person` mediumint(8) unsigned NOT NULL default '0', `chanid` int(10) unsigned NOT NULL default '0', `starttime` datetime NOT NULL default '0000-00-00 00:00:00', `role` set('actor','director','producer','executive_producer','writer','guest_star','host','adapter','presenter','commentator','guest') NOT NULL default '', UNIQUE KEY `chanid` (`chanid`,`starttime`,`person`,`role`), KEY `person` (`person`,`role`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `credits` -- LOCK TABLES `credits` WRITE; /*!40000 ALTER TABLE `credits` DISABLE KEYS */; /*!40000 ALTER TABLE `credits` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customexample` -- DROP TABLE IF EXISTS `customexample`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customexample` ( `rulename` varchar(64) NOT NULL, `fromclause` text NOT NULL, `whereclause` text NOT NULL, `search` tinyint(4) NOT NULL default '0', PRIMARY KEY (`rulename`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customexample` -- LOCK TABLES `customexample` WRITE; /*!40000 ALTER TABLE `customexample` DISABLE KEYS */; /*!40000 ALTER TABLE `customexample` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `diseqc_config` -- DROP TABLE IF EXISTS `diseqc_config`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `diseqc_config` ( `cardinputid` int(10) unsigned NOT NULL, `diseqcid` int(10) unsigned NOT NULL, `value` varchar(16) NOT NULL default '', KEY `id` (`cardinputid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `diseqc_config` -- LOCK TABLES `diseqc_config` WRITE; /*!40000 ALTER TABLE `diseqc_config` DISABLE KEYS */; /*!40000 ALTER TABLE `diseqc_config` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `diseqc_tree` -- DROP TABLE IF EXISTS `diseqc_tree`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `diseqc_tree` ( `diseqcid` int(10) unsigned NOT NULL auto_increment, `parentid` int(10) unsigned default NULL, `ordinal` tinyint(3) unsigned NOT NULL, `type` varchar(16) NOT NULL default '', `subtype` varchar(16) NOT NULL default '', `description` varchar(32) NOT NULL default '', `switch_ports` tinyint(3) unsigned NOT NULL default '0', `rotor_hi_speed` float NOT NULL default '0', `rotor_lo_speed` float NOT NULL default '0', `rotor_positions` varchar(255) NOT NULL default '', `lnb_lof_switch` int(10) NOT NULL default '0', `lnb_lof_hi` int(10) NOT NULL default '0', `lnb_lof_lo` int(10) NOT NULL default '0', `cmd_repeat` int(11) NOT NULL default '1', `lnb_pol_inv` tinyint(4) NOT NULL default '0', PRIMARY KEY (`diseqcid`), KEY `parentid` (`parentid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `diseqc_tree` -- LOCK TABLES `diseqc_tree` WRITE; /*!40000 ALTER TABLE `diseqc_tree` DISABLE KEYS */; /*!40000 ALTER TABLE `diseqc_tree` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `displayprofilegroups` -- DROP TABLE IF EXISTS `displayprofilegroups`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `displayprofilegroups` ( `name` varchar(128) NOT NULL, `hostname` varchar(255) NOT NULL, `profilegroupid` int(10) unsigned NOT NULL auto_increment, PRIMARY KEY (`name`,`hostname`), UNIQUE KEY `profilegroupid` (`profilegroupid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `displayprofilegroups` -- LOCK TABLES `displayprofilegroups` WRITE; /*!40000 ALTER TABLE `displayprofilegroups` DISABLE KEYS */; /*!40000 ALTER TABLE `displayprofilegroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `displayprofiles` -- DROP TABLE IF EXISTS `displayprofiles`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `displayprofiles` ( `profilegroupid` int(10) unsigned NOT NULL, `profileid` int(10) unsigned NOT NULL auto_increment, `value` varchar(128) NOT NULL, `data` varchar(255) NOT NULL default '', KEY `profilegroupid` (`profilegroupid`), KEY `profileid` (`profileid`,`value`), KEY `profileid_2` (`profileid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `displayprofiles` -- LOCK TABLES `displayprofiles` WRITE; /*!40000 ALTER TABLE `displayprofiles` DISABLE KEYS */; /*!40000 ALTER TABLE `displayprofiles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dtv_multiplex` -- DROP TABLE IF EXISTS `dtv_multiplex`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `dtv_multiplex` ( `mplexid` smallint(6) NOT NULL auto_increment, `sourceid` smallint(6) default NULL, `transportid` int(11) default NULL, `networkid` int(11) default NULL, `frequency` int(11) default NULL, `inversion` char(1) default 'a', `symbolrate` int(11) default NULL, `fec` varchar(10) default 'auto', `polarity` char(1) default NULL, `modulation` varchar(10) default 'auto', `bandwidth` char(1) default 'a', `lp_code_rate` varchar(10) default 'auto', `transmission_mode` char(1) default 'a', `guard_interval` varchar(10) default 'auto', `visible` smallint(1) NOT NULL default '0', `constellation` varchar(10) default 'auto', `hierarchy` varchar(10) default 'auto', `hp_code_rate` varchar(10) default 'auto', `sistandard` varchar(10) default 'dvb', `serviceversion` smallint(6) default '33', `updatetimestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, PRIMARY KEY (`mplexid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `dtv_multiplex` -- LOCK TABLES `dtv_multiplex` WRITE; /*!40000 ALTER TABLE `dtv_multiplex` DISABLE KEYS */; /*!40000 ALTER TABLE `dtv_multiplex` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dtv_privatetypes` -- DROP TABLE IF EXISTS `dtv_privatetypes`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `dtv_privatetypes` ( `sitype` varchar(4) NOT NULL default '', `networkid` int(11) NOT NULL default '0', `private_type` varchar(20) NOT NULL default '', `private_value` varchar(100) NOT NULL default '' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `dtv_privatetypes` -- LOCK TABLES `dtv_privatetypes` WRITE; /*!40000 ALTER TABLE `dtv_privatetypes` DISABLE KEYS */; /*!40000 ALTER TABLE `dtv_privatetypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dvdbookmark` -- DROP TABLE IF EXISTS `dvdbookmark`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `dvdbookmark` ( `serialid` varchar(16) NOT NULL default '', `name` varchar(32) default NULL, `title` smallint(6) NOT NULL default '0', `audionum` tinyint(4) NOT NULL default '-1', `subtitlenum` tinyint(4) NOT NULL default '-1', `framenum` bigint(20) NOT NULL default '0', `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, PRIMARY KEY (`serialid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `dvdbookmark` -- LOCK TABLES `dvdbookmark` WRITE; /*!40000 ALTER TABLE `dvdbookmark` DISABLE KEYS */; /*!40000 ALTER TABLE `dvdbookmark` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dvdinput` -- DROP TABLE IF EXISTS `dvdinput`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `dvdinput` ( `intid` int(10) unsigned NOT NULL, `hsize` int(10) unsigned default NULL, `vsize` int(10) unsigned default NULL, `ar_num` int(10) unsigned default NULL, `ar_denom` int(10) unsigned default NULL, `fr_code` int(10) unsigned default NULL, `letterbox` tinyint(1) default NULL, `v_format` varchar(16) default NULL, PRIMARY KEY (`intid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `dvdinput` -- LOCK TABLES `dvdinput` WRITE; /*!40000 ALTER TABLE `dvdinput` DISABLE KEYS */; /*!40000 ALTER TABLE `dvdinput` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dvdtranscode` -- DROP TABLE IF EXISTS `dvdtranscode`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `dvdtranscode` ( `intid` int(11) NOT NULL auto_increment, `input` int(10) unsigned default NULL, `name` varchar(128) NOT NULL, `sync_mode` int(10) unsigned default NULL, `use_yv12` tinyint(1) default NULL, `cliptop` int(11) default NULL, `clipbottom` int(11) default NULL, `clipleft` int(11) default NULL, `clipright` int(11) default NULL, `f_resize_h` int(11) default NULL, `f_resize_w` int(11) default NULL, `hq_resize_h` int(11) default NULL, `hq_resize_w` int(11) default NULL, `grow_h` int(11) default NULL, `grow_w` int(11) default NULL, `clip2top` int(11) default NULL, `clip2bottom` int(11) default NULL, `clip2left` int(11) default NULL, `clip2right` int(11) default NULL, `codec` varchar(128) NOT NULL, `codec_param` varchar(128) default NULL, `bitrate` int(11) default NULL, `a_sample_r` int(11) default NULL, `a_bitrate` int(11) default NULL, `two_pass` tinyint(1) default NULL, `tc_param` varchar(128) default NULL, PRIMARY KEY (`intid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `dvdtranscode` -- LOCK TABLES `dvdtranscode` WRITE; /*!40000 ALTER TABLE `dvdtranscode` DISABLE KEYS */; /*!40000 ALTER TABLE `dvdtranscode` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eit_cache` -- DROP TABLE IF EXISTS `eit_cache`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eit_cache` ( `chanid` int(10) NOT NULL, `eventid` int(10) unsigned NOT NULL default '0', `tableid` tinyint(3) unsigned NOT NULL, `version` tinyint(3) unsigned NOT NULL, `endtime` int(10) unsigned NOT NULL, `status` tinyint(4) NOT NULL default '0', PRIMARY KEY (`chanid`,`eventid`,`status`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eit_cache` -- LOCK TABLES `eit_cache` WRITE; /*!40000 ALTER TABLE `eit_cache` DISABLE KEYS */; /*!40000 ALTER TABLE `eit_cache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `favorites` -- DROP TABLE IF EXISTS `favorites`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `favorites` ( `favid` int(11) unsigned NOT NULL auto_increment, `userid` int(11) unsigned NOT NULL default '0', `chanid` int(11) unsigned NOT NULL default '0', PRIMARY KEY (`favid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `favorites` -- LOCK TABLES `favorites` WRITE; /*!40000 ALTER TABLE `favorites` DISABLE KEYS */; /*!40000 ALTER TABLE `favorites` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `filemarkup` -- DROP TABLE IF EXISTS `filemarkup`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `filemarkup` ( `filename` text NOT NULL, `mark` mediumint(8) unsigned NOT NULL default '0', `offset` bigint(20) unsigned default NULL, `type` tinyint(4) NOT NULL default '0', KEY `filename` (`filename`(255)) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `filemarkup` -- LOCK TABLES `filemarkup` WRITE; /*!40000 ALTER TABLE `filemarkup` DISABLE KEYS */; /*!40000 ALTER TABLE `filemarkup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gallerymetadata` -- DROP TABLE IF EXISTS `gallerymetadata`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `gallerymetadata` ( `image` varchar(255) NOT NULL, `angle` int(11) NOT NULL, PRIMARY KEY (`image`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `gallerymetadata` -- LOCK TABLES `gallerymetadata` WRITE; /*!40000 ALTER TABLE `gallerymetadata` DISABLE KEYS */; /*!40000 ALTER TABLE `gallerymetadata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gamemetadata` -- DROP TABLE IF EXISTS `gamemetadata`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `gamemetadata` ( `system` varchar(128) NOT NULL default '', `romname` varchar(128) NOT NULL default '', `gamename` varchar(128) NOT NULL default '', `genre` varchar(128) NOT NULL default '', `year` varchar(10) NOT NULL default '', `publisher` varchar(128) NOT NULL default '', `favorite` tinyint(1) default NULL, `rompath` varchar(255) NOT NULL default '', `gametype` varchar(64) NOT NULL default '', `diskcount` tinyint(1) NOT NULL default '1', `country` varchar(128) NOT NULL default '', `crc_value` varchar(64) NOT NULL default '', `display` tinyint(1) NOT NULL default '1', `version` varchar(64) NOT NULL default '', KEY `system` (`system`), KEY `year` (`year`), KEY `romname` (`romname`), KEY `gamename` (`gamename`), KEY `genre` (`genre`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `gamemetadata` -- LOCK TABLES `gamemetadata` WRITE; /*!40000 ALTER TABLE `gamemetadata` DISABLE KEYS */; /*!40000 ALTER TABLE `gamemetadata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gameplayers` -- DROP TABLE IF EXISTS `gameplayers`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `gameplayers` ( `gameplayerid` int(10) unsigned NOT NULL auto_increment, `playername` varchar(64) NOT NULL default '', `workingpath` varchar(255) NOT NULL default '', `rompath` varchar(255) NOT NULL default '', `screenshots` varchar(255) NOT NULL default '', `commandline` text NOT NULL, `gametype` varchar(64) NOT NULL default '', `extensions` varchar(128) NOT NULL default '', `spandisks` tinyint(1) NOT NULL default '0', PRIMARY KEY (`gameplayerid`), UNIQUE KEY `playername` (`playername`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `gameplayers` -- LOCK TABLES `gameplayers` WRITE; /*!40000 ALTER TABLE `gameplayers` DISABLE KEYS */; /*!40000 ALTER TABLE `gameplayers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `housekeeping` -- DROP TABLE IF EXISTS `housekeeping`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `housekeeping` ( `tag` varchar(64) NOT NULL default '', `lastrun` datetime default NULL, PRIMARY KEY (`tag`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `housekeeping` -- LOCK TABLES `housekeeping` WRITE; /*!40000 ALTER TABLE `housekeeping` DISABLE KEYS */; /*!40000 ALTER TABLE `housekeeping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `inputgroup` -- DROP TABLE IF EXISTS `inputgroup`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `inputgroup` ( `cardinputid` int(10) unsigned NOT NULL, `inputgroupid` int(10) unsigned NOT NULL, `inputgroupname` varchar(32) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `inputgroup` -- LOCK TABLES `inputgroup` WRITE; /*!40000 ALTER TABLE `inputgroup` DISABLE KEYS */; /*!40000 ALTER TABLE `inputgroup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `inuseprograms` -- DROP TABLE IF EXISTS `inuseprograms`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `inuseprograms` ( `chanid` int(10) unsigned NOT NULL default '0', `starttime` datetime NOT NULL default '0000-00-00 00:00:00', `recusage` varchar(128) NOT NULL default '', `lastupdatetime` datetime NOT NULL default '0000-00-00 00:00:00', `hostname` varchar(255) NOT NULL default '', `rechost` varchar(64) NOT NULL, `recdir` varchar(255) NOT NULL default '', KEY `chanid` (`chanid`,`starttime`), KEY `recusage` (`recusage`,`lastupdatetime`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `inuseprograms` -- LOCK TABLES `inuseprograms` WRITE; /*!40000 ALTER TABLE `inuseprograms` DISABLE KEYS */; /*!40000 ALTER TABLE `inuseprograms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jobqueue` -- DROP TABLE IF EXISTS `jobqueue`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `jobqueue` ( `id` int(11) NOT NULL auto_increment, `chanid` int(10) NOT NULL default '0', `starttime` datetime NOT NULL default '0000-00-00 00:00:00', `inserttime` datetime NOT NULL default '0000-00-00 00:00:00', `type` int(11) NOT NULL default '0', `cmds` int(11) NOT NULL default '0', `flags` int(11) NOT NULL default '0', `status` int(11) NOT NULL default '0', `statustime` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `hostname` varchar(255) NOT NULL default '', `args` blob NOT NULL, `comment` varchar(128) NOT NULL default '', `schedruntime` datetime NOT NULL default '2007-01-01 00:00:00', PRIMARY KEY (`id`), UNIQUE KEY `chanid` (`chanid`,`starttime`,`type`,`inserttime`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `jobqueue` -- LOCK TABLES `jobqueue` WRITE; /*!40000 ALTER TABLE `jobqueue` DISABLE KEYS */; /*!40000 ALTER TABLE `jobqueue` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jumppoints` -- DROP TABLE IF EXISTS `jumppoints`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `jumppoints` ( `destination` varchar(128) NOT NULL default '', `description` varchar(255) default NULL, `keylist` varchar(128) default NULL, `hostname` varchar(255) NOT NULL default '', PRIMARY KEY (`destination`,`hostname`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `jumppoints` -- LOCK TABLES `jumppoints` WRITE; /*!40000 ALTER TABLE `jumppoints` DISABLE KEYS */; /*!40000 ALTER TABLE `jumppoints` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `keybindings` -- DROP TABLE IF EXISTS `keybindings`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `keybindings` ( `context` varchar(32) NOT NULL default '', `action` varchar(32) NOT NULL default '', `description` varchar(255) default NULL, `keylist` varchar(128) default NULL, `hostname` varchar(255) NOT NULL default '', PRIMARY KEY (`context`,`action`,`hostname`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `keybindings` -- LOCK TABLES `keybindings` WRITE; /*!40000 ALTER TABLE `keybindings` DISABLE KEYS */; /*!40000 ALTER TABLE `keybindings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `keyword` -- DROP TABLE IF EXISTS `keyword`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `keyword` ( `phrase` varchar(128) NOT NULL default '', `searchtype` int(10) unsigned NOT NULL default '3', UNIQUE KEY `phrase` (`phrase`,`searchtype`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `keyword` -- LOCK TABLES `keyword` WRITE; /*!40000 ALTER TABLE `keyword` DISABLE KEYS */; /*!40000 ALTER TABLE `keyword` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `music_albumart` -- DROP TABLE IF EXISTS `music_albumart`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `music_albumart` ( `albumart_id` int(20) NOT NULL auto_increment, `filename` varchar(255) NOT NULL default '', `directory_id` int(20) NOT NULL default '0', `imagetype` tinyint(3) NOT NULL default '0', `song_id` int(11) NOT NULL default '0', `embedded` tinyint(1) NOT NULL default '0', PRIMARY KEY (`albumart_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `music_albumart` -- LOCK TABLES `music_albumart` WRITE; /*!40000 ALTER TABLE `music_albumart` DISABLE KEYS */; /*!40000 ALTER TABLE `music_albumart` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `music_albums` -- DROP TABLE IF EXISTS `music_albums`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `music_albums` ( `album_id` int(11) unsigned NOT NULL auto_increment, `artist_id` int(11) unsigned NOT NULL default '0', `album_name` varchar(255) NOT NULL default '', `year` smallint(6) NOT NULL default '0', `compilation` tinyint(1) unsigned NOT NULL default '0', PRIMARY KEY (`album_id`), KEY `idx_album_name` (`album_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `music_albums` -- LOCK TABLES `music_albums` WRITE; /*!40000 ALTER TABLE `music_albums` DISABLE KEYS */; /*!40000 ALTER TABLE `music_albums` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `music_artists` -- DROP TABLE IF EXISTS `music_artists`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `music_artists` ( `artist_id` int(11) unsigned NOT NULL auto_increment, `artist_name` varchar(255) NOT NULL default '', PRIMARY KEY (`artist_id`), KEY `idx_artist_name` (`artist_name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `music_artists` -- LOCK TABLES `music_artists` WRITE; /*!40000 ALTER TABLE `music_artists` DISABLE KEYS */; /*!40000 ALTER TABLE `music_artists` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `music_directories` -- DROP TABLE IF EXISTS `music_directories`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `music_directories` ( `directory_id` int(20) NOT NULL auto_increment, `path` text NOT NULL, `parent_id` int(20) NOT NULL default '0', PRIMARY KEY (`directory_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `music_directories` -- LOCK TABLES `music_directories` WRITE; /*!40000 ALTER TABLE `music_directories` DISABLE KEYS */; /*!40000 ALTER TABLE `music_directories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `music_genres` -- DROP TABLE IF EXISTS `music_genres`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `music_genres` ( `genre_id` int(11) unsigned NOT NULL auto_increment, `genre` varchar(255) NOT NULL default '', PRIMARY KEY (`genre_id`), KEY `idx_genre` (`genre`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `music_genres` -- LOCK TABLES `music_genres` WRITE; /*!40000 ALTER TABLE `music_genres` DISABLE KEYS */; /*!40000 ALTER TABLE `music_genres` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `music_playlists` -- DROP TABLE IF EXISTS `music_playlists`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `music_playlists` ( `playlist_id` int(11) unsigned NOT NULL auto_increment, `playlist_name` varchar(255) NOT NULL default '', `playlist_songs` text NOT NULL, `last_accessed` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `length` int(11) unsigned NOT NULL default '0', `songcount` smallint(8) unsigned NOT NULL default '0', `hostname` varchar(255) NOT NULL default '', PRIMARY KEY (`playlist_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `music_playlists` -- LOCK TABLES `music_playlists` WRITE; /*!40000 ALTER TABLE `music_playlists` DISABLE KEYS */; /*!40000 ALTER TABLE `music_playlists` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `music_smartplaylist_categories` -- DROP TABLE IF EXISTS `music_smartplaylist_categories`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `music_smartplaylist_categories` ( `categoryid` int(10) unsigned NOT NULL auto_increment, `name` varchar(128) NOT NULL, PRIMARY KEY (`categoryid`), KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `music_smartplaylist_categories` -- LOCK TABLES `music_smartplaylist_categories` WRITE; /*!40000 ALTER TABLE `music_smartplaylist_categories` DISABLE KEYS */; /*!40000 ALTER TABLE `music_smartplaylist_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `music_smartplaylist_items` -- DROP TABLE IF EXISTS `music_smartplaylist_items`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `music_smartplaylist_items` ( `smartplaylistitemid` int(10) unsigned NOT NULL auto_increment, `smartplaylistid` int(10) unsigned NOT NULL, `field` varchar(50) NOT NULL, `operator` varchar(20) NOT NULL, `value1` varchar(255) NOT NULL, `value2` varchar(255) NOT NULL, PRIMARY KEY (`smartplaylistitemid`), KEY `smartplaylistid` (`smartplaylistid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `music_smartplaylist_items` -- LOCK TABLES `music_smartplaylist_items` WRITE; /*!40000 ALTER TABLE `music_smartplaylist_items` DISABLE KEYS */; /*!40000 ALTER TABLE `music_smartplaylist_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `music_smartplaylists` -- DROP TABLE IF EXISTS `music_smartplaylists`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `music_smartplaylists` ( `smartplaylistid` int(10) unsigned NOT NULL auto_increment, `name` varchar(128) NOT NULL, `categoryid` int(10) unsigned NOT NULL, `matchtype` set('All','Any') NOT NULL default 'All', `orderby` varchar(128) NOT NULL default '', `limitto` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`smartplaylistid`), KEY `name` (`name`), KEY `categoryid` (`categoryid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `music_smartplaylists` -- LOCK TABLES `music_smartplaylists` WRITE; /*!40000 ALTER TABLE `music_smartplaylists` DISABLE KEYS */; /*!40000 ALTER TABLE `music_smartplaylists` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `music_songs` -- DROP TABLE IF EXISTS `music_songs`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `music_songs` ( `song_id` int(11) unsigned NOT NULL auto_increment, `filename` text NOT NULL, `name` varchar(255) NOT NULL default '', `track` smallint(6) unsigned NOT NULL default '0', `artist_id` int(11) unsigned NOT NULL default '0', `album_id` int(11) unsigned NOT NULL default '0', `genre_id` int(11) unsigned NOT NULL default '0', `year` smallint(6) NOT NULL default '0', `length` int(11) unsigned NOT NULL default '0', `numplays` int(11) unsigned NOT NULL default '0', `rating` tinyint(4) unsigned NOT NULL default '0', `lastplay` datetime default NULL, `date_entered` datetime default NULL, `date_modified` datetime default NULL, `format` varchar(4) NOT NULL default '0', `mythdigest` varchar(255) default NULL, `size` bigint(20) unsigned default NULL, `description` varchar(255) default NULL, `comment` varchar(255) default NULL, `disc_count` smallint(5) unsigned default '0', `disc_number` smallint(5) unsigned default '0', `track_count` smallint(5) unsigned default '0', `start_time` int(10) unsigned default '0', `stop_time` int(10) unsigned default NULL, `eq_preset` varchar(255) default NULL, `relative_volume` tinyint(4) default '0', `sample_rate` int(10) unsigned default '0', `bitrate` int(10) unsigned default '0', `bpm` smallint(5) unsigned default NULL, `directory_id` int(20) NOT NULL default '0', PRIMARY KEY (`song_id`), KEY `idx_name` (`name`), KEY `idx_mythdigest` (`mythdigest`), KEY `directory_id` (`directory_id`), KEY `album_id` (`album_id`), KEY `genre_id` (`genre_id`), KEY `artist_id` (`artist_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `music_songs` -- LOCK TABLES `music_songs` WRITE; /*!40000 ALTER TABLE `music_songs` DISABLE KEYS */; /*!40000 ALTER TABLE `music_songs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `music_stats` -- DROP TABLE IF EXISTS `music_stats`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `music_stats` ( `num_artists` smallint(5) unsigned NOT NULL default '0', `num_albums` smallint(5) unsigned NOT NULL default '0', `num_songs` mediumint(8) unsigned NOT NULL default '0', `num_genres` tinyint(3) unsigned NOT NULL default '0', `total_time` varchar(12) NOT NULL default '0', `total_size` varchar(10) NOT NULL default '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `music_stats` -- LOCK TABLES `music_stats` WRITE; /*!40000 ALTER TABLE `music_stats` DISABLE KEYS */; /*!40000 ALTER TABLE `music_stats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `musicmetadata` -- DROP TABLE IF EXISTS `musicmetadata`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `musicmetadata` ( `intid` int(10) unsigned NOT NULL auto_increment, `artist` varchar(128) NOT NULL, `compilation_artist` varchar(128) NOT NULL, `album` varchar(128) NOT NULL, `title` varchar(128) NOT NULL, `genre` varchar(128) NOT NULL, `year` int(10) unsigned NOT NULL, `tracknum` int(10) unsigned NOT NULL, `length` int(10) unsigned NOT NULL, `filename` text NOT NULL, `rating` int(10) unsigned NOT NULL default '5', `lastplay` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `playcount` int(10) unsigned NOT NULL default '0', `mythdigest` varchar(255) default NULL, `size` bigint(20) unsigned default NULL, `date_added` datetime default NULL, `date_modified` datetime default NULL, `format` varchar(4) default NULL, `description` varchar(255) default NULL, `comment` varchar(255) default NULL, `compilation` tinyint(4) default '0', `composer` varchar(255) default NULL, `disc_count` smallint(5) unsigned default '0', `disc_number` smallint(5) unsigned default '0', `track_count` smallint(5) unsigned default '0', `start_time` int(10) unsigned default '0', `stop_time` int(10) unsigned default NULL, `eq_preset` varchar(255) default NULL, `relative_volume` tinyint(4) default '0', `sample_rate` int(10) unsigned default NULL, `bpm` smallint(5) unsigned default NULL, PRIMARY KEY (`intid`), KEY `artist` (`artist`), KEY `album` (`album`), KEY `title` (`title`), KEY `genre` (`genre`), KEY `mythdigest` (`mythdigest`), KEY `compilation_artist` (`compilation_artist`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `musicmetadata` -- LOCK TABLES `musicmetadata` WRITE; /*!40000 ALTER TABLE `musicmetadata` DISABLE KEYS */; /*!40000 ALTER TABLE `musicmetadata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `musicplaylist` -- DROP TABLE IF EXISTS `musicplaylist`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `musicplaylist` ( `playlistid` int(10) unsigned NOT NULL auto_increment, `name` varchar(128) NOT NULL, `hostname` varchar(255) default NULL, `songlist` text NOT NULL, PRIMARY KEY (`playlistid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `musicplaylist` -- LOCK TABLES `musicplaylist` WRITE; /*!40000 ALTER TABLE `musicplaylist` DISABLE KEYS */; /*!40000 ALTER TABLE `musicplaylist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mythlog` -- DROP TABLE IF EXISTS `mythlog`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `mythlog` ( `logid` int(10) unsigned NOT NULL auto_increment, `module` varchar(32) NOT NULL default '', `priority` int(11) NOT NULL default '0', `acknowledged` tinyint(1) default '0', `logdate` datetime default NULL, `host` varchar(128) default NULL, `message` varchar(255) NOT NULL default '', `details` text, PRIMARY KEY (`logid`), KEY `module` (`module`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `mythlog` -- LOCK TABLES `mythlog` WRITE; /*!40000 ALTER TABLE `mythlog` DISABLE KEYS */; /*!40000 ALTER TABLE `mythlog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `netflix` -- DROP TABLE IF EXISTS `netflix`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `netflix` ( `name` varchar(100) NOT NULL, `category` varchar(255) NOT NULL, `url` varchar(255) NOT NULL, `ico` varchar(255) default NULL, `updated` int(10) unsigned default NULL, `is_queue` int(10) unsigned default NULL, `queue` varchar(32) NOT NULL default '', PRIMARY KEY (`name`,`queue`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `netflix` -- LOCK TABLES `netflix` WRITE; /*!40000 ALTER TABLE `netflix` DISABLE KEYS */; /*!40000 ALTER TABLE `netflix` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `networkiconmap` -- DROP TABLE IF EXISTS `networkiconmap`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `networkiconmap` ( `id` int(11) NOT NULL auto_increment, `network` varchar(20) NOT NULL default '', `url` varchar(255) NOT NULL default '', PRIMARY KEY (`id`), UNIQUE KEY `network` (`network`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `networkiconmap` -- LOCK TABLES `networkiconmap` WRITE; /*!40000 ALTER TABLE `networkiconmap` DISABLE KEYS */; /*!40000 ALTER TABLE `networkiconmap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `oldfind` -- DROP TABLE IF EXISTS `oldfind`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `oldfind` ( `recordid` int(11) NOT NULL default '0', `findid` int(11) NOT NULL default '0', PRIMARY KEY (`recordid`,`findid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `oldfind` -- LOCK TABLES `oldfind` WRITE; /*!40000 ALTER TABLE `oldfind` DISABLE KEYS */; /*!40000 ALTER TABLE `oldfind` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `oldprogram` -- DROP TABLE IF EXISTS `oldprogram`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `oldprogram` ( `oldtitle` varchar(128) NOT NULL default '', `airdate` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`oldtitle`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `oldprogram` -- LOCK TABLES `oldprogram` WRITE; /*!40000 ALTER TABLE `oldprogram` DISABLE KEYS */; /*!40000 ALTER TABLE `oldprogram` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `oldrecorded` -- DROP TABLE IF EXISTS `oldrecorded`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `oldrecorded` ( `chanid` int(10) unsigned NOT NULL default '0', `starttime` datetime NOT NULL default '0000-00-00 00:00:00', `endtime` datetime NOT NULL default '0000-00-00 00:00:00', `title` varchar(128) NOT NULL default '', `subtitle` varchar(128) NOT NULL default '', `description` text NOT NULL, `category` varchar(64) NOT NULL default '', `seriesid` varchar(40) NOT NULL default '', `programid` varchar(40) NOT NULL default '', `findid` int(11) NOT NULL default '0', `recordid` int(11) NOT NULL default '0', `station` varchar(20) NOT NULL default '', `rectype` int(10) unsigned NOT NULL default '0', `duplicate` tinyint(1) NOT NULL default '0', `recstatus` int(11) NOT NULL default '0', `reactivate` smallint(6) NOT NULL default '0', `generic` tinyint(1) default '0', PRIMARY KEY (`station`,`starttime`,`title`), KEY `endtime` (`endtime`), KEY `title` (`title`), KEY `seriesid` (`seriesid`), KEY `programid` (`programid`), KEY `recordid` (`recordid`), KEY `recstatus` (`recstatus`,`programid`,`seriesid`), KEY `recstatus_2` (`recstatus`,`title`,`subtitle`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `oldrecorded` -- LOCK TABLES `oldrecorded` WRITE; /*!40000 ALTER TABLE `oldrecorded` DISABLE KEYS */; /*!40000 ALTER TABLE `oldrecorded` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `people` -- DROP TABLE IF EXISTS `people`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `people` ( `person` mediumint(8) unsigned NOT NULL auto_increment, `name` char(128) NOT NULL default '', PRIMARY KEY (`person`), UNIQUE KEY `name` (`name`(41)) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `people` -- LOCK TABLES `people` WRITE; /*!40000 ALTER TABLE `people` DISABLE KEYS */; /*!40000 ALTER TABLE `people` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `phonecallhistory` -- DROP TABLE IF EXISTS `phonecallhistory`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `phonecallhistory` ( `recid` int(10) unsigned NOT NULL auto_increment, `displayname` text NOT NULL, `url` text NOT NULL, `timestamp` text NOT NULL, `duration` int(10) unsigned NOT NULL, `directionin` int(10) unsigned NOT NULL, `directoryref` int(10) unsigned default NULL, PRIMARY KEY (`recid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `phonecallhistory` -- LOCK TABLES `phonecallhistory` WRITE; /*!40000 ALTER TABLE `phonecallhistory` DISABLE KEYS */; /*!40000 ALTER TABLE `phonecallhistory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `phonedirectory` -- DROP TABLE IF EXISTS `phonedirectory`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `phonedirectory` ( `intid` int(10) unsigned NOT NULL auto_increment, `nickname` text NOT NULL, `firstname` text, `surname` text, `url` text NOT NULL, `directory` text NOT NULL, `photofile` text, `speeddial` int(10) unsigned NOT NULL, `onhomelan` int(10) unsigned default '0', PRIMARY KEY (`intid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `phonedirectory` -- LOCK TABLES `phonedirectory` WRITE; /*!40000 ALTER TABLE `phonedirectory` DISABLE KEYS */; /*!40000 ALTER TABLE `phonedirectory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pidcache` -- DROP TABLE IF EXISTS `pidcache`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `pidcache` ( `chanid` smallint(6) NOT NULL default '0', `pid` int(11) NOT NULL default '-1', `tableid` int(11) NOT NULL default '-1', KEY `chanid` (`chanid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `pidcache` -- LOCK TABLES `pidcache` WRITE; /*!40000 ALTER TABLE `pidcache` DISABLE KEYS */; /*!40000 ALTER TABLE `pidcache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `playgroup` -- DROP TABLE IF EXISTS `playgroup`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `playgroup` ( `name` varchar(32) NOT NULL default '', `titlematch` varchar(255) NOT NULL default '', `skipahead` int(11) NOT NULL default '0', `skipback` int(11) NOT NULL default '0', `timestretch` int(11) NOT NULL default '0', `jump` int(11) NOT NULL default '0', PRIMARY KEY (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `playgroup` -- LOCK TABLES `playgroup` WRITE; /*!40000 ALTER TABLE `playgroup` DISABLE KEYS */; /*!40000 ALTER TABLE `playgroup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `powerpriority` -- DROP TABLE IF EXISTS `powerpriority`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `powerpriority` ( `priorityname` varchar(64) NOT NULL, `recpriority` int(10) NOT NULL default '0', `selectclause` text NOT NULL, PRIMARY KEY (`priorityname`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `powerpriority` -- LOCK TABLES `powerpriority` WRITE; /*!40000 ALTER TABLE `powerpriority` DISABLE KEYS */; /*!40000 ALTER TABLE `powerpriority` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `profilegroups` -- DROP TABLE IF EXISTS `profilegroups`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `profilegroups` ( `id` int(10) unsigned NOT NULL auto_increment, `name` varchar(128) default NULL, `cardtype` varchar(32) NOT NULL default 'V4L', `is_default` int(1) default '0', `hostname` varchar(255) default NULL, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`,`hostname`), KEY `cardtype` (`cardtype`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `profilegroups` -- LOCK TABLES `profilegroups` WRITE; /*!40000 ALTER TABLE `profilegroups` DISABLE KEYS */; /*!40000 ALTER TABLE `profilegroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `program` -- DROP TABLE IF EXISTS `program`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `program` ( `chanid` int(10) unsigned NOT NULL default '0', `starttime` datetime NOT NULL default '0000-00-00 00:00:00', `endtime` datetime NOT NULL default '0000-00-00 00:00:00', `title` varchar(128) NOT NULL default '', `subtitle` varchar(128) NOT NULL default '', `description` text NOT NULL, `category` varchar(64) NOT NULL default '', `category_type` varchar(64) NOT NULL default '', `airdate` year(4) NOT NULL default '0000', `stars` float NOT NULL default '0', `previouslyshown` tinyint(4) NOT NULL default '0', `title_pronounce` varchar(128) NOT NULL default '', `stereo` tinyint(1) NOT NULL default '0', `subtitled` tinyint(1) NOT NULL default '0', `hdtv` tinyint(1) NOT NULL default '0', `closecaptioned` tinyint(1) NOT NULL default '0', `partnumber` int(11) NOT NULL default '0', `parttotal` int(11) NOT NULL default '0', `seriesid` varchar(40) NOT NULL default '', `originalairdate` date default NULL, `showtype` varchar(30) NOT NULL default '', `colorcode` varchar(20) NOT NULL default '', `syndicatedepisodenumber` varchar(20) NOT NULL default '', `programid` varchar(40) NOT NULL default '', `manualid` int(10) unsigned NOT NULL default '0', `generic` tinyint(1) default '0', `listingsource` int(11) NOT NULL default '0', `first` tinyint(1) NOT NULL default '0', `last` tinyint(1) NOT NULL default '0', `audioprop` set('STEREO','MONO','SURROUND','DOLBY','HARDHEAR','VISUALIMPAIR') NOT NULL, `subtitletypes` set('HARDHEAR','NORMAL','ONSCREEN','SIGNED') NOT NULL, `videoprop` set('HDTV','WIDESCREEN','AVC') NOT NULL, PRIMARY KEY (`chanid`,`starttime`,`manualid`), KEY `endtime` (`endtime`), KEY `title` (`title`), KEY `title_pronounce` (`title_pronounce`), KEY `seriesid` (`seriesid`), KEY `id_start_end` (`chanid`,`starttime`,`endtime`), KEY `program_manualid` (`manualid`), KEY `previouslyshown` (`previouslyshown`), KEY `programid` (`programid`,`starttime`), KEY `starttime` (`starttime`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `program` -- LOCK TABLES `program` WRITE; /*!40000 ALTER TABLE `program` DISABLE KEYS */; /*!40000 ALTER TABLE `program` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `programgenres` -- DROP TABLE IF EXISTS `programgenres`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `programgenres` ( `chanid` int(10) unsigned NOT NULL default '0', `starttime` datetime NOT NULL default '0000-00-00 00:00:00', `relevance` char(1) NOT NULL default '', `genre` char(30) default NULL, PRIMARY KEY (`chanid`,`starttime`,`relevance`), KEY `genre` (`genre`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `programgenres` -- LOCK TABLES `programgenres` WRITE; /*!40000 ALTER TABLE `programgenres` DISABLE KEYS */; /*!40000 ALTER TABLE `programgenres` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `programrating` -- DROP TABLE IF EXISTS `programrating`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `programrating` ( `chanid` int(10) unsigned NOT NULL default '0', `starttime` datetime NOT NULL default '0000-00-00 00:00:00', `system` char(8) NOT NULL default '', `rating` char(16) default NULL, UNIQUE KEY `chanid` (`chanid`,`starttime`,`system`,`rating`), KEY `starttime` (`starttime`,`system`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `programrating` -- LOCK TABLES `programrating` WRITE; /*!40000 ALTER TABLE `programrating` DISABLE KEYS */; /*!40000 ALTER TABLE `programrating` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `recgrouppassword` -- DROP TABLE IF EXISTS `recgrouppassword`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `recgrouppassword` ( `recgroup` varchar(32) NOT NULL default '', `password` varchar(10) NOT NULL default '', PRIMARY KEY (`recgroup`), UNIQUE KEY `recgroup` (`recgroup`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `recgrouppassword` -- LOCK TABLES `recgrouppassword` WRITE; /*!40000 ALTER TABLE `recgrouppassword` DISABLE KEYS */; /*!40000 ALTER TABLE `recgrouppassword` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `record` -- DROP TABLE IF EXISTS `record`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `record` ( `recordid` int(10) unsigned NOT NULL auto_increment, `type` int(10) unsigned NOT NULL default '0', `chanid` int(10) unsigned default NULL, `starttime` time NOT NULL default '00:00:00', `startdate` date NOT NULL default '0000-00-00', `endtime` time NOT NULL default '00:00:00', `enddate` date NOT NULL default '0000-00-00', `title` varchar(128) NOT NULL default '', `subtitle` varchar(128) NOT NULL default '', `description` text NOT NULL, `category` varchar(64) NOT NULL default '', `profile` varchar(128) NOT NULL default 'Default', `recpriority` int(10) NOT NULL default '0', `autoexpire` int(11) NOT NULL default '0', `maxepisodes` int(11) NOT NULL default '0', `maxnewest` int(11) NOT NULL default '0', `startoffset` int(11) NOT NULL default '0', `endoffset` int(11) NOT NULL default '0', `recgroup` varchar(32) NOT NULL default 'Default', `dupmethod` int(11) NOT NULL default '6', `dupin` int(11) NOT NULL default '15', `station` varchar(20) NOT NULL default '', `seriesid` varchar(40) NOT NULL default '', `programid` varchar(40) NOT NULL default '', `search` int(10) unsigned NOT NULL default '0', `autotranscode` tinyint(1) NOT NULL default '0', `autocommflag` tinyint(1) NOT NULL default '0', `autouserjob1` tinyint(1) NOT NULL default '0', `autouserjob2` tinyint(1) NOT NULL default '0', `autouserjob3` tinyint(1) NOT NULL default '0', `autouserjob4` tinyint(1) NOT NULL default '0', `findday` tinyint(4) NOT NULL default '0', `findtime` time NOT NULL default '00:00:00', `findid` int(11) NOT NULL default '0', `inactive` tinyint(1) NOT NULL default '0', `parentid` int(11) NOT NULL default '0', `transcoder` int(11) NOT NULL default '0', `tsdefault` float NOT NULL default '1', `playgroup` varchar(32) NOT NULL default 'Default', `prefinput` int(10) NOT NULL default '0', `next_record` datetime NOT NULL, `last_record` datetime NOT NULL, `last_delete` datetime NOT NULL, `storagegroup` varchar(32) NOT NULL default 'Default', `avg_delay` int(11) NOT NULL default '100', PRIMARY KEY (`recordid`), KEY `chanid` (`chanid`,`starttime`), KEY `title` (`title`), KEY `seriesid` (`seriesid`), KEY `programid` (`programid`), KEY `maxepisodes` (`maxepisodes`), KEY `search` (`search`), KEY `type` (`type`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `record` -- LOCK TABLES `record` WRITE; /*!40000 ALTER TABLE `record` DISABLE KEYS */; /*!40000 ALTER TABLE `record` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `recorded` -- DROP TABLE IF EXISTS `recorded`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `recorded` ( `chanid` int(10) unsigned NOT NULL default '0', `starttime` datetime NOT NULL default '0000-00-00 00:00:00', `endtime` datetime NOT NULL default '0000-00-00 00:00:00', `title` varchar(128) NOT NULL default '', `subtitle` varchar(128) NOT NULL default '', `description` text NOT NULL, `category` varchar(64) NOT NULL default '', `hostname` varchar(255) NOT NULL default '', `bookmark` tinyint(1) NOT NULL default '0', `editing` int(10) unsigned NOT NULL default '0', `cutlist` tinyint(1) NOT NULL default '0', `autoexpire` int(11) NOT NULL default '0', `commflagged` int(10) unsigned NOT NULL default '0', `recgroup` varchar(32) NOT NULL default 'Default', `recordid` int(11) default NULL, `seriesid` varchar(40) NOT NULL default '', `programid` varchar(40) NOT NULL default '', `lastmodified` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `filesize` bigint(20) NOT NULL default '0', `stars` float NOT NULL default '0', `previouslyshown` tinyint(1) default '0', `originalairdate` date default NULL, `preserve` tinyint(1) NOT NULL default '0', `findid` int(11) NOT NULL default '0', `deletepending` tinyint(1) NOT NULL default '0', `transcoder` int(11) NOT NULL default '0', `timestretch` float NOT NULL default '1', `recpriority` int(11) NOT NULL default '0', `basename` varchar(255) NOT NULL, `progstart` datetime NOT NULL default '0000-00-00 00:00:00', `progend` datetime NOT NULL default '0000-00-00 00:00:00', `playgroup` varchar(32) NOT NULL default 'Default', `profile` varchar(32) NOT NULL default '', `duplicate` tinyint(1) NOT NULL default '0', `transcoded` tinyint(1) NOT NULL default '0', `watched` tinyint(4) NOT NULL default '0', `storagegroup` varchar(32) NOT NULL default 'Default', PRIMARY KEY (`chanid`,`starttime`), KEY `endtime` (`endtime`), KEY `seriesid` (`seriesid`), KEY `programid` (`programid`), KEY `title` (`title`), KEY `recordid` (`recordid`), KEY `deletepending` (`deletepending`,`lastmodified`), KEY `recgroup` (`recgroup`,`endtime`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `recorded` -- LOCK TABLES `recorded` WRITE; /*!40000 ALTER TABLE `recorded` DISABLE KEYS */; /*!40000 ALTER TABLE `recorded` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `recordedcredits` -- DROP TABLE IF EXISTS `recordedcredits`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `recordedcredits` ( `person` mediumint(8) unsigned NOT NULL default '0', `chanid` int(10) unsigned NOT NULL default '0', `starttime` datetime NOT NULL default '0000-00-00 00:00:00', `role` set('actor','director','producer','executive_producer','writer','guest_star','host','adapter','presenter','commentator','guest') NOT NULL default '', UNIQUE KEY `chanid` (`chanid`,`starttime`,`person`,`role`), KEY `person` (`person`,`role`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `recordedcredits` -- LOCK TABLES `recordedcredits` WRITE; /*!40000 ALTER TABLE `recordedcredits` DISABLE KEYS */; /*!40000 ALTER TABLE `recordedcredits` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `recordedfile` -- DROP TABLE IF EXISTS `recordedfile`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `recordedfile` ( `chanid` int(10) unsigned NOT NULL default '0', `starttime` datetime NOT NULL default '0000-00-00 00:00:00', `basename` varchar(128) NOT NULL default '', `filesize` bigint(20) NOT NULL default '0', `width` smallint(5) unsigned NOT NULL default '0', `height` smallint(5) unsigned NOT NULL default '0', `fps` float(6,3) NOT NULL default '0.000', `aspect` float(8,6) NOT NULL default '0.000000', `audio_sample_rate` smallint(5) unsigned NOT NULL default '0', `audio_bits_per_sample` smallint(5) unsigned NOT NULL default '0', `audio_channels` tinyint(3) unsigned NOT NULL default '0', `audio_type` varchar(255) NOT NULL default '', `video_type` varchar(255) NOT NULL default '', `comment` varchar(255) NOT NULL default '', PRIMARY KEY (`chanid`,`starttime`), KEY `basename` (`basename`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `recordedfile` -- LOCK TABLES `recordedfile` WRITE; /*!40000 ALTER TABLE `recordedfile` DISABLE KEYS */; /*!40000 ALTER TABLE `recordedfile` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `recordedmarkup` -- DROP TABLE IF EXISTS `recordedmarkup`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `recordedmarkup` ( `chanid` int(10) unsigned NOT NULL default '0', `starttime` datetime NOT NULL default '0000-00-00 00:00:00', `mark` mediumint(8) unsigned NOT NULL default '0', `offset` varchar(32) default NULL, `type` tinyint(4) NOT NULL default '0', PRIMARY KEY (`chanid`,`starttime`,`type`,`mark`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `recordedmarkup` -- LOCK TABLES `recordedmarkup` WRITE; /*!40000 ALTER TABLE `recordedmarkup` DISABLE KEYS */; /*!40000 ALTER TABLE `recordedmarkup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `recordedprogram` -- DROP TABLE IF EXISTS `recordedprogram`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `recordedprogram` ( `chanid` int(10) unsigned NOT NULL default '0', `starttime` datetime NOT NULL default '0000-00-00 00:00:00', `endtime` datetime NOT NULL default '0000-00-00 00:00:00', `title` varchar(128) NOT NULL default '', `subtitle` varchar(128) NOT NULL default '', `description` text NOT NULL, `category` varchar(64) NOT NULL default '', `category_type` varchar(64) NOT NULL default '', `airdate` year(4) NOT NULL default '0000', `stars` float unsigned NOT NULL default '0', `previouslyshown` tinyint(4) NOT NULL default '0', `title_pronounce` varchar(128) NOT NULL default '', `stereo` tinyint(1) NOT NULL default '0', `subtitled` tinyint(1) NOT NULL default '0', `hdtv` tinyint(1) NOT NULL default '0', `closecaptioned` tinyint(1) NOT NULL default '0', `partnumber` int(11) NOT NULL default '0', `parttotal` int(11) NOT NULL default '0', `seriesid` varchar(40) NOT NULL default '', `originalairdate` date default NULL, `showtype` varchar(30) NOT NULL default '', `colorcode` varchar(20) NOT NULL default '', `syndicatedepisodenumber` varchar(20) NOT NULL default '', `programid` varchar(40) NOT NULL default '', `manualid` int(10) unsigned NOT NULL default '0', `generic` tinyint(1) default '0', `listingsource` int(11) NOT NULL default '0', `first` tinyint(1) NOT NULL default '0', `last` tinyint(1) NOT NULL default '0', `audioprop` set('STEREO','MONO','SURROUND','DOLBY','HARDHEAR','VISUALIMPAIR') NOT NULL, `subtitletypes` set('HARDHEAR','NORMAL','ONSCREEN','SIGNED') NOT NULL, `videoprop` set('HDTV','WIDESCREEN','AVC') NOT NULL, PRIMARY KEY (`chanid`,`starttime`,`manualid`), KEY `endtime` (`endtime`), KEY `title` (`title`), KEY `title_pronounce` (`title_pronounce`), KEY `seriesid` (`seriesid`), KEY `programid` (`programid`), KEY `id_start_end` (`chanid`,`starttime`,`endtime`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `recordedprogram` -- LOCK TABLES `recordedprogram` WRITE; /*!40000 ALTER TABLE `recordedprogram` DISABLE KEYS */; /*!40000 ALTER TABLE `recordedprogram` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `recordedrating` -- DROP TABLE IF EXISTS `recordedrating`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `recordedrating` ( `chanid` int(10) unsigned NOT NULL default '0', `starttime` datetime NOT NULL default '0000-00-00 00:00:00', `system` char(8) NOT NULL default '', `rating` char(16) default NULL, UNIQUE KEY `chanid` (`chanid`,`starttime`,`system`,`rating`), KEY `starttime` (`starttime`,`system`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `recordedrating` -- LOCK TABLES `recordedrating` WRITE; /*!40000 ALTER TABLE `recordedrating` DISABLE KEYS */; /*!40000 ALTER TABLE `recordedrating` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `recordedseek` -- DROP TABLE IF EXISTS `recordedseek`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `recordedseek` ( `chanid` int(10) unsigned NOT NULL default '0', `starttime` datetime NOT NULL default '0000-00-00 00:00:00', `mark` mediumint(8) unsigned NOT NULL default '0', `offset` bigint(20) unsigned NOT NULL, `type` tinyint(4) NOT NULL default '0', PRIMARY KEY (`chanid`,`starttime`,`type`,`mark`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `recordedseek` -- LOCK TABLES `recordedseek` WRITE; /*!40000 ALTER TABLE `recordedseek` DISABLE KEYS */; /*!40000 ALTER TABLE `recordedseek` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `recordingprofiles` -- DROP TABLE IF EXISTS `recordingprofiles`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `recordingprofiles` ( `id` int(10) unsigned NOT NULL auto_increment, `name` varchar(128) default NULL, `videocodec` varchar(128) default NULL, `audiocodec` varchar(128) default NULL, `profilegroup` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `profilegroup` (`profilegroup`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `recordingprofiles` -- LOCK TABLES `recordingprofiles` WRITE; /*!40000 ALTER TABLE `recordingprofiles` DISABLE KEYS */; /*!40000 ALTER TABLE `recordingprofiles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `recordmatch` -- DROP TABLE IF EXISTS `recordmatch`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `recordmatch` ( `recordid` int(10) unsigned default NULL, `chanid` int(10) unsigned default NULL, `starttime` datetime default NULL, `manualid` int(10) unsigned default NULL, `oldrecduplicate` tinyint(1) default NULL, `recduplicate` tinyint(1) default NULL, `findduplicate` tinyint(1) default NULL, `oldrecstatus` int(11) default NULL, KEY `recordid` (`recordid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `recordmatch` -- LOCK TABLES `recordmatch` WRITE; /*!40000 ALTER TABLE `recordmatch` DISABLE KEYS */; /*!40000 ALTER TABLE `recordmatch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `romdb` -- DROP TABLE IF EXISTS `romdb`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `romdb` ( `crc` varchar(64) NOT NULL default '', `name` varchar(128) NOT NULL default '', `description` varchar(128) NOT NULL default '', `category` varchar(128) NOT NULL default '', `year` varchar(10) NOT NULL default '', `manufacturer` varchar(128) NOT NULL default '', `country` varchar(128) NOT NULL default '', `publisher` varchar(128) NOT NULL default '', `platform` varchar(64) NOT NULL default '', `filesize` int(12) default NULL, `flags` varchar(64) NOT NULL default '', `version` varchar(64) NOT NULL default '', `binfile` varchar(64) NOT NULL default '', KEY `crc` (`crc`), KEY `year` (`year`), KEY `category` (`category`), KEY `name` (`name`), KEY `description` (`description`), KEY `platform` (`platform`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `romdb` -- LOCK TABLES `romdb` WRITE; /*!40000 ALTER TABLE `romdb` DISABLE KEYS */; /*!40000 ALTER TABLE `romdb` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `schemalock` -- DROP TABLE IF EXISTS `schemalock`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `schemalock` ( `schemalock` int(1) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `schemalock` -- LOCK TABLES `schemalock` WRITE; /*!40000 ALTER TABLE `schemalock` DISABLE KEYS */; /*!40000 ALTER TABLE `schemalock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `settings` -- DROP TABLE IF EXISTS `settings`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `settings` ( `value` varchar(128) NOT NULL default '', `data` text, `hostname` varchar(255) default NULL, KEY `value` (`value`,`hostname`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `settings` -- LOCK TABLES `settings` WRITE; /*!40000 ALTER TABLE `settings` DISABLE KEYS */; /*!40000 ALTER TABLE `settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `storagegroup` -- DROP TABLE IF EXISTS `storagegroup`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `storagegroup` ( `id` int(11) NOT NULL auto_increment, `groupname` varchar(32) NOT NULL, `hostname` varchar(64) NOT NULL default '', `dirname` varchar(255) NOT NULL default '', PRIMARY KEY (`id`), UNIQUE KEY `grouphostdir` (`groupname`,`hostname`,`dirname`), KEY `hostname` (`hostname`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `storagegroup` -- LOCK TABLES `storagegroup` WRITE; /*!40000 ALTER TABLE `storagegroup` DISABLE KEYS */; /*!40000 ALTER TABLE `storagegroup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tvchain` -- DROP TABLE IF EXISTS `tvchain`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tvchain` ( `chanid` int(10) unsigned NOT NULL default '0', `starttime` datetime NOT NULL default '0000-00-00 00:00:00', `chainid` varchar(128) NOT NULL default '', `chainpos` int(10) NOT NULL default '0', `discontinuity` tinyint(1) NOT NULL default '0', `watching` int(10) NOT NULL default '0', `hostprefix` varchar(128) NOT NULL default '', `cardtype` varchar(32) NOT NULL default 'V4L', `input` varchar(32) NOT NULL default '', `channame` varchar(32) NOT NULL default '', `endtime` datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (`chanid`,`starttime`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tvchain` -- LOCK TABLES `tvchain` WRITE; /*!40000 ALTER TABLE `tvchain` DISABLE KEYS */; /*!40000 ALTER TABLE `tvchain` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `upnpmedia` -- DROP TABLE IF EXISTS `upnpmedia`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `upnpmedia` ( `intid` int(10) unsigned NOT NULL default '0', `class` varchar(64) NOT NULL default '', `itemtype` varchar(128) NOT NULL default '', `parentid` int(10) unsigned NOT NULL default '0', `itemproperties` varchar(255) NOT NULL default '', `filepath` varchar(512) NOT NULL default '', `title` varchar(255) NOT NULL default '', `filename` varchar(512) NOT NULL default '', `coverart` varchar(512) NOT NULL default '', PRIMARY KEY (`intid`), KEY `class` (`class`), KEY `filepath` (`filepath`), KEY `parentid` (`parentid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `upnpmedia` -- LOCK TABLES `upnpmedia` WRITE; /*!40000 ALTER TABLE `upnpmedia` DISABLE KEYS */; /*!40000 ALTER TABLE `upnpmedia` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `videocast` -- DROP TABLE IF EXISTS `videocast`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `videocast` ( `intid` int(10) unsigned NOT NULL auto_increment, `cast` varchar(128) NOT NULL, PRIMARY KEY (`intid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `videocast` -- LOCK TABLES `videocast` WRITE; /*!40000 ALTER TABLE `videocast` DISABLE KEYS */; /*!40000 ALTER TABLE `videocast` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `videocategory` -- DROP TABLE IF EXISTS `videocategory`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `videocategory` ( `intid` int(10) unsigned NOT NULL auto_increment, `category` varchar(128) NOT NULL, PRIMARY KEY (`intid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `videocategory` -- LOCK TABLES `videocategory` WRITE; /*!40000 ALTER TABLE `videocategory` DISABLE KEYS */; /*!40000 ALTER TABLE `videocategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `videocountry` -- DROP TABLE IF EXISTS `videocountry`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `videocountry` ( `intid` int(10) unsigned NOT NULL auto_increment, `country` varchar(128) NOT NULL, PRIMARY KEY (`intid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `videocountry` -- LOCK TABLES `videocountry` WRITE; /*!40000 ALTER TABLE `videocountry` DISABLE KEYS */; /*!40000 ALTER TABLE `videocountry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `videogenre` -- DROP TABLE IF EXISTS `videogenre`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `videogenre` ( `intid` int(10) unsigned NOT NULL auto_increment, `genre` varchar(128) NOT NULL, PRIMARY KEY (`intid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `videogenre` -- LOCK TABLES `videogenre` WRITE; /*!40000 ALTER TABLE `videogenre` DISABLE KEYS */; /*!40000 ALTER TABLE `videogenre` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `videometadata` -- DROP TABLE IF EXISTS `videometadata`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `videometadata` ( `intid` int(10) unsigned NOT NULL auto_increment, `title` varchar(128) NOT NULL, `director` varchar(128) NOT NULL, `plot` text, `rating` varchar(128) NOT NULL, `inetref` varchar(255) NOT NULL, `year` int(10) unsigned NOT NULL, `userrating` float NOT NULL, `length` int(10) unsigned NOT NULL, `showlevel` int(10) unsigned NOT NULL, `filename` text NOT NULL, `coverfile` text NOT NULL, `childid` int(11) NOT NULL default '-1', `browse` tinyint(1) NOT NULL default '1', `playcommand` varchar(255) default NULL, `category` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`intid`), KEY `director` (`director`), KEY `title` (`title`), KEY `title_2` (`title`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `videometadata` -- LOCK TABLES `videometadata` WRITE; /*!40000 ALTER TABLE `videometadata` DISABLE KEYS */; /*!40000 ALTER TABLE `videometadata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `videometadatacast` -- DROP TABLE IF EXISTS `videometadatacast`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `videometadatacast` ( `idvideo` int(10) unsigned NOT NULL, `idcast` int(10) unsigned NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `videometadatacast` -- LOCK TABLES `videometadatacast` WRITE; /*!40000 ALTER TABLE `videometadatacast` DISABLE KEYS */; /*!40000 ALTER TABLE `videometadatacast` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `videometadatacountry` -- DROP TABLE IF EXISTS `videometadatacountry`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `videometadatacountry` ( `idvideo` int(10) unsigned NOT NULL, `idcountry` int(10) unsigned NOT NULL, KEY `idvideo` (`idvideo`), KEY `idcountry` (`idcountry`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `videometadatacountry` -- LOCK TABLES `videometadatacountry` WRITE; /*!40000 ALTER TABLE `videometadatacountry` DISABLE KEYS */; /*!40000 ALTER TABLE `videometadatacountry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `videometadatagenre` -- DROP TABLE IF EXISTS `videometadatagenre`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `videometadatagenre` ( `idvideo` int(10) unsigned NOT NULL, `idgenre` int(10) unsigned NOT NULL, KEY `idvideo` (`idvideo`), KEY `idgenre` (`idgenre`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `videometadatagenre` -- LOCK TABLES `videometadatagenre` WRITE; /*!40000 ALTER TABLE `videometadatagenre` DISABLE KEYS */; /*!40000 ALTER TABLE `videometadatagenre` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `videosource` -- DROP TABLE IF EXISTS `videosource`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `videosource` ( `sourceid` int(10) unsigned NOT NULL auto_increment, `name` varchar(128) NOT NULL default '', `xmltvgrabber` varchar(128) default NULL, `userid` varchar(128) NOT NULL default '', `freqtable` varchar(16) NOT NULL default 'default', `lineupid` varchar(64) default NULL, `password` varchar(64) default NULL, `useeit` smallint(6) NOT NULL default '0', PRIMARY KEY (`sourceid`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `videosource` -- LOCK TABLES `videosource` WRITE; /*!40000 ALTER TABLE `videosource` DISABLE KEYS */; /*!40000 ALTER TABLE `videosource` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `videotypes` -- DROP TABLE IF EXISTS `videotypes`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `videotypes` ( `intid` int(10) unsigned NOT NULL auto_increment, `extension` varchar(128) NOT NULL, `playcommand` varchar(255) NOT NULL, `f_ignore` tinyint(1) default NULL, `use_default` tinyint(1) default NULL, PRIMARY KEY (`intid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `videotypes` -- LOCK TABLES `videotypes` WRITE; /*!40000 ALTER TABLE `videotypes` DISABLE KEYS */; /*!40000 ALTER TABLE `videotypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `weatherdatalayout` -- DROP TABLE IF EXISTS `weatherdatalayout`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `weatherdatalayout` ( `location` varchar(64) NOT NULL, `dataitem` varchar(64) NOT NULL, `weatherscreens_screen_id` int(10) unsigned NOT NULL, `weathersourcesettings_sourceid` int(10) unsigned NOT NULL, PRIMARY KEY (`location`,`dataitem`,`weatherscreens_screen_id`,`weathersourcesettings_sourceid`), KEY `weatherdatalayout_FKIndex1` (`weatherscreens_screen_id`), KEY `weatherdatalayout_FKIndex2` (`weathersourcesettings_sourceid`), CONSTRAINT `weatherdatalayout_ibfk_1` FOREIGN KEY (`weatherscreens_screen_id`) REFERENCES `weatherscreens` (`screen_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `weatherdatalayout_ibfk_2` FOREIGN KEY (`weathersourcesettings_sourceid`) REFERENCES `weathersourcesettings` (`sourceid`) ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `weatherdatalayout` -- LOCK TABLES `weatherdatalayout` WRITE; /*!40000 ALTER TABLE `weatherdatalayout` DISABLE KEYS */; /*!40000 ALTER TABLE `weatherdatalayout` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `weatherscreens` -- DROP TABLE IF EXISTS `weatherscreens`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `weatherscreens` ( `screen_id` int(10) unsigned NOT NULL auto_increment, `draworder` int(10) unsigned NOT NULL, `container` varchar(64) NOT NULL, `hostname` varchar(255) default NULL, `units` tinyint(3) unsigned NOT NULL, PRIMARY KEY (`screen_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `weatherscreens` -- LOCK TABLES `weatherscreens` WRITE; /*!40000 ALTER TABLE `weatherscreens` DISABLE KEYS */; /*!40000 ALTER TABLE `weatherscreens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `weathersourcesettings` -- DROP TABLE IF EXISTS `weathersourcesettings`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `weathersourcesettings` ( `sourceid` int(10) unsigned NOT NULL auto_increment, `source_name` varchar(64) NOT NULL, `update_timeout` int(10) unsigned NOT NULL default '600', `retrieve_timeout` int(10) unsigned NOT NULL default '60', `hostname` varchar(255) default NULL, `path` varchar(255) default NULL, `author` varchar(128) default NULL, `version` varchar(32) default NULL, `email` varchar(255) default NULL, `types` mediumtext, PRIMARY KEY (`sourceid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `weathersourcesettings` -- LOCK TABLES `weathersourcesettings` WRITE; /*!40000 ALTER TABLE `weathersourcesettings` DISABLE KEYS */; /*!40000 ALTER TABLE `weathersourcesettings` ENABLE KEYS */; UNLOCK TABLES; /*!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 2009-02-17 20:46:37 INSERT INTO settings VALUES ('DBSchemaVer','1214','MythTVhost'); INSERT INTO settings VALUES ('ArchiveDBSchemaVer','1001','MythTVhost'); INSERT INTO settings VALUES ('FlixDBSchemaVer','1001','MythTVhost'); INSERT INTO settings VALUES ('GalleryDBSchemaVer','1000','MythTVhost'); INSERT INTO settings VALUES ('GameDBSchemaVer','1012','MythTVhost'); INSERT INTO settings VALUES ('MusicDBSchemaVer','1013','MythTVhost'); INSERT INTO settings VALUES ('PhoneDBSchemaVer','1001','MythTVhost'); INSERT INTO settings VALUES ('mythvideo.DBSchemaVer','1016','MythTVhost'); INSERT INTO settings VALUES ('WeatherDBSchemaVer','1000','MythTVhost'); INSERT INTO settings VALUES ('SecurityPin','0000','MythTVhost'); INSERT INTO settings VALUES ('BackendServerIP','127.0.0.1','MythTVhost'); INSERT INTO settings VALUES ('MasterServerIP','127.0.0.1','MythTVhost'); INSERT INTO settings VALUES ('MasterServerPort','6543','MythTVhost'); INSERT INTO settings VALUES ('Theme', 'LinHES','MythTVhost'); INSERT INTO storagegroup VALUES ('\N', 'Default','MythTVhost','/');