summaryrefslogtreecommitdiff
path: root/contrib/upgrade-xxv-db.sql
diff options
context:
space:
mode:
authorAndreas Brachold <vdr07@deltab.de>2007-12-28 10:15:45 +0000
committerAndreas Brachold <vdr07@deltab.de>2007-12-28 10:15:45 +0000
commit8d11e5ef702eb4e7a0448eb43d39f28c9670954e (patch)
tree2c1ba3792fd5fac7e542be571d30fa695ed59435 /contrib/upgrade-xxv-db.sql
parente4597ce3619f3d7772436d02d1674c28f4c03a16 (diff)
downloadxxv-8d11e5ef702eb4e7a0448eb43d39f28c9670954e.tar.gz
xxv-8d11e5ef702eb4e7a0448eb43d39f28c9670954e.tar.bz2
* New modul: MOVETIMER - This modul move timers between channels.
* rlist.tmpl : Fix typo
Diffstat (limited to 'contrib/upgrade-xxv-db.sql')
-rw-r--r--contrib/upgrade-xxv-db.sql17
1 files changed, 16 insertions, 1 deletions
diff --git a/contrib/upgrade-xxv-db.sql b/contrib/upgrade-xxv-db.sql
index bd39e29..785a5a5 100644
--- a/contrib/upgrade-xxv-db.sql
+++ b/contrib/upgrade-xxv-db.sql
@@ -127,6 +127,21 @@ CREATE TABLE `MEDIALIB_VIDEOGENRE` (
);
--
+-- Table structure for table `MOVETIMER`
+--
+
+DROP TABLE IF EXISTS `MOVETIMER`;
+CREATE TABLE `MOVETIMER` (
+ `id` int(10) unsigned NOT NULL auto_increment,
+ `source` varchar(64) NOT NULL,
+ `destination` varchar(64) NOT NULL,
+ `move` enum('y','n','collision') default 'collision',
+ `original` enum('move','keep','copy') default 'move',
+ PRIMARY KEY (`id`),
+ UNIQUE KEY `source` (`source`)
+);
+
+--
-- Table structure for table `USER`
--
@@ -150,4 +165,4 @@ CREATE TABLE `USER` (
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
--- Dump completed on 2007-11-24 14:27:24
+-- Dump completed on 2007-12-28 10:05:06