Ticket #10449: record.sql

File record.sql, 4.5 KB (added by yiannividalis@…, 12 years ago)

Export of the affected rule from record table.

Line 
1-- phpMyAdmin SQL Dump
2-- version 3.4.10.1
3-- http://www.phpmyadmin.net
4--
5-- Φιλοξενητής: localhost
6-- Χρόνος δημιουργίας: 14 Μαρ 2012 στις 08:41:30
7-- Έκδοση Διακομιστή: 5.5.16
8-- Έκδοση PHP: 5.3.8
9
10SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
11SET time_zone = "+00:00";
12
13
14/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
15/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
16/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
17/*!40101 SET NAMES utf8 */;
18
19--
20-- Βάση: `mythconverg`
21--
22
23-- --------------------------------------------------------
24
25--
26-- Δομή Πίνακα για τον Πίνακα `record`
27--
28
29CREATE TABLE IF NOT EXISTS `record` (
30  `recordid` int(10) unsigned NOT NULL AUTO_INCREMENT,
31  `type` int(10) unsigned NOT NULL DEFAULT '0',
32  `chanid` int(10) unsigned DEFAULT NULL,
33  `starttime` time NOT NULL DEFAULT '00:00:00',
34  `startdate` date NOT NULL DEFAULT '0000-00-00',
35  `endtime` time NOT NULL DEFAULT '00:00:00',
36  `enddate` date NOT NULL DEFAULT '0000-00-00',
37  `title` varchar(128) NOT NULL DEFAULT '',
38  `subtitle` varchar(128) NOT NULL DEFAULT '',
39  `description` varchar(16000) NOT NULL DEFAULT '',
40  `season` smallint(5) NOT NULL,
41  `episode` smallint(5) NOT NULL,
42  `category` varchar(64) NOT NULL DEFAULT '',
43  `profile` varchar(128) NOT NULL DEFAULT 'Default',
44  `recpriority` int(10) NOT NULL DEFAULT '0',
45  `autoexpire` int(11) NOT NULL DEFAULT '0',
46  `maxepisodes` int(11) NOT NULL DEFAULT '0',
47  `maxnewest` int(11) NOT NULL DEFAULT '0',
48  `startoffset` int(11) NOT NULL DEFAULT '0',
49  `endoffset` int(11) NOT NULL DEFAULT '0',
50  `recgroup` varchar(32) NOT NULL DEFAULT 'Default',
51  `dupmethod` int(11) NOT NULL DEFAULT '6',
52  `dupin` int(11) NOT NULL DEFAULT '15',
53  `station` varchar(20) NOT NULL DEFAULT '',
54  `seriesid` varchar(40) NOT NULL DEFAULT '',
55  `programid` varchar(40) NOT NULL DEFAULT '',
56  `inetref` varchar(40) NOT NULL,
57  `search` int(10) unsigned NOT NULL DEFAULT '0',
58  `autotranscode` tinyint(1) NOT NULL DEFAULT '0',
59  `autocommflag` tinyint(1) NOT NULL DEFAULT '0',
60  `autouserjob1` tinyint(1) NOT NULL DEFAULT '0',
61  `autouserjob2` tinyint(1) NOT NULL DEFAULT '0',
62  `autouserjob3` tinyint(1) NOT NULL DEFAULT '0',
63  `autouserjob4` tinyint(1) NOT NULL DEFAULT '0',
64  `autometadata` tinyint(1) NOT NULL DEFAULT '0',
65  `findday` tinyint(4) NOT NULL DEFAULT '0',
66  `findtime` time NOT NULL DEFAULT '00:00:00',
67  `findid` int(11) NOT NULL DEFAULT '0',
68  `inactive` tinyint(1) NOT NULL DEFAULT '0',
69  `parentid` int(11) NOT NULL DEFAULT '0',
70  `transcoder` int(11) NOT NULL DEFAULT '0',
71  `playgroup` varchar(32) NOT NULL DEFAULT 'Default',
72  `prefinput` int(10) NOT NULL DEFAULT '0',
73  `next_record` datetime NOT NULL,
74  `last_record` datetime NOT NULL,
75  `last_delete` datetime NOT NULL,
76  `storagegroup` varchar(32) NOT NULL DEFAULT 'Default',
77  `avg_delay` int(11) NOT NULL DEFAULT '100',
78  `filter` int(10) unsigned NOT NULL DEFAULT '0',
79  PRIMARY KEY (`recordid`),
80  KEY `chanid` (`chanid`,`starttime`),
81  KEY `title` (`title`),
82  KEY `seriesid` (`seriesid`),
83  KEY `programid` (`programid`),
84  KEY `maxepisodes` (`maxepisodes`),
85  KEY `search` (`search`),
86  KEY `type` (`type`)
87) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=579 ;
88
89--
90-- Άδειασμα δεδομένων του πίνακα `record`
91--
92
93INSERT INTO `record` (`recordid`, `type`, `chanid`, `starttime`, `startdate`, `endtime`, `enddate`, `title`, `subtitle`, `description`, `season`, `episode`, `category`, `profile`, `recpriority`, `autoexpire`, `maxepisodes`, `maxnewest`, `startoffset`, `endoffset`, `recgroup`, `dupmethod`, `dupin`, `station`, `seriesid`, `programid`, `inetref`, `search`, `autotranscode`, `autocommflag`, `autouserjob1`, `autouserjob2`, `autouserjob3`, `autouserjob4`, `autometadata`, `findday`, `findtime`, `findid`, `inactive`, `parentid`, `transcoder`, `playgroup`, `prefinput`, `next_record`, `last_record`, `last_delete`, `storagegroup`, `avg_delay`, `filter`) VALUES
94(577, 3, 1048, '21:00:00', '2012-03-13', '23:00:00', '2012-03-13', 'Αλ τσαντιρι Νιουζ', '', 'Κωμωδία', 0, 0, 'Unknown', 'Default', 5, 1, 0, 0, 0, 0, 'Default', 6, 15, 'Alpha', '544', '', '', 0, 0, 0, 0, 0, 0, 0, 1, 3, '21:00:00', 734941, 0, 0, 0, 'Default', 1, '2012-03-14 10:45:00', '2012-03-14 09:45:00', '0000-00-00 00:00:00', 'Default', 100, 0);
95
96/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
97/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
98/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;