diff options
| author | Andreas Brachold <vdr07@deltab.de> | 2007-12-28 10:15:45 +0000 |
|---|---|---|
| committer | Andreas Brachold <vdr07@deltab.de> | 2007-12-28 10:15:45 +0000 |
| commit | 8d11e5ef702eb4e7a0448eb43d39f28c9670954e (patch) | |
| tree | 2c1ba3792fd5fac7e542be571d30fa695ed59435 /contrib/upgrade-xxv-db.sql | |
| parent | e4597ce3619f3d7772436d02d1674c28f4c03a16 (diff) | |
| download | xxv-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.sql | 17 |
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 |
