~vanvugt/+junk/mediatomb

« back to all changes in this revision

Viewing changes to config/sqlite3.sql

  • Committer: Bazaar Package Importer
  • Author(s): Andres Mejia
  • Date: 2008-03-02 13:09:16 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080302130916-zlljdze3kt7vuq4b
Tags: 0.11.0-1
* New upstream release.
* Include message about which inotify headers will be used when enabling
  inotify runtime support.
* Fixed error with use of INTERFACE in init script. Also removed use of -m
  option.
* Including new config.xml options.
* Added more build dependencies for new upstream release.
* Removed build dependency of libid3-dev, taglib is now preferred.
* mediatomb.xpm and manpage.xml is now included in orig tarball.
* inotify patch is not needed anymore.
* md5 patch has been committed upstream and is no longer needed. Also removed
  README.Debian.
* TwinHelix PNG fix is now used. Removed from TODO.
* Adding dependency of iceweasel for mediatomb package.
* Updated copyright file.
* Updated watch file.
* Updated rules file for proper configure options.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
  "mime_type" varchar(40) default NULL,
16
16
  "flags" integer unsigned NOT NULL default '1',
17
17
  "track_number" integer default NULL,
 
18
  "service_id" varchar(255) default NULL,
18
19
  CONSTRAINT "cds_object_ibfk_1" FOREIGN KEY ("ref_id") REFERENCES "cds_object" ("id") ON DELETE CASCADE ON UPDATE CASCADE,
19
20
  CONSTRAINT "cds_object_ibfk_2" FOREIGN KEY ("parent_id") REFERENCES "cds_object" ("id") ON DELETE CASCADE ON UPDATE CASCADE
20
21
);
21
 
INSERT INTO "mt_cds_object" VALUES(-1, NULL, -1, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 9, NULL);
22
 
INSERT INTO "mt_cds_object" VALUES(0, NULL, -1, 1, 'object.container', 'Root', NULL, NULL, NULL, NULL, NULL, 0, NULL, 9, NULL);
23
 
INSERT INTO "mt_cds_object" VALUES(1, NULL, 0, 1, 'object.container', 'PC Directory', NULL, NULL, NULL, NULL, NULL, 0, NULL, 9, NULL);
 
22
INSERT INTO "mt_cds_object" VALUES(-1, NULL, -1, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, NULL, 9, NULL, NULL);
 
23
INSERT INTO "mt_cds_object" VALUES(0, NULL, -1, 1, 'object.container', 'Root', NULL, NULL, NULL, NULL, NULL, 0, NULL, 9, NULL, NULL);
 
24
INSERT INTO "mt_cds_object" VALUES(1, NULL, 0, 1, 'object.container', 'PC Directory', NULL, NULL, NULL, NULL, NULL, 0, NULL, 9, NULL, NULL);
24
25
CREATE TABLE "mt_cds_active_item" (
25
26
  "id" integer primary key,
26
27
  "action" varchar(255) NOT NULL,
31
32
  "key" varchar(40) primary key NOT NULL,
32
33
  "value" varchar(255) NOT NULL
33
34
);
34
 
INSERT INTO "mt_internal_setting" VALUES('db_version', '2');
 
35
INSERT INTO "mt_internal_setting" VALUES('db_version', '3');
35
36
CREATE TABLE "mt_autoscan" (
36
37
  "id" integer primary key,
37
38
  "obj_id" integer default NULL,
54
55
CREATE INDEX mt_track_number ON mt_cds_object(track_number);
55
56
CREATE INDEX mt_internal_setting_key ON mt_internal_setting(key);
56
57
CREATE UNIQUE INDEX mt_autoscan_obj_id ON mt_autoscan(obj_id);
 
58
CREATE INDEX mt_cds_object_service_id ON mt_cds_object(service_id);
57
59
COMMIT;