[cvs-annodex] commit (/annodex):
phpannodex-cgi/Anode/trunk/acidfree/anode.mysql
ctford
nobody at lists.annodex.net
Wed Jan 25 14:59:07 EST 2006
Update of /annodex (new revision 1877)
Modified files:
phpannodex-cgi/Anode/trunk/acidfree/anode.mysql
Log Message:
Generates tables for storing handlers for CMML and Annodex and CMML clip info.
Modified: phpannodex-cgi/Anode/trunk/acidfree/anode.mysql
===================================================================
--- phpannodex-cgi/Anode/trunk/acidfree/anode.mysql 2006-01-24 20:07:01 UTC (rev 1876)
+++ phpannodex-cgi/Anode/trunk/acidfree/anode.mysql 2006-01-25 03:59:06 UTC (rev 1877)
@@ -1 +1,23 @@
-
+-- Licence = GPL
+
+
+-- Table for storing information about Annodexes that doesn't fit into the
+-- regular acidfree table.
+-- FIXME Need CMML head stuff.
+CREATE TABLE acidfree_annodex (
+ aid int(11) NOT NULL REFERENCES acidfree(aid) ON DELETE CASCADE,
+ annodex_handler varchar(255) NOT NULL default '',
+ cmml_handler varchar(255) NOT NULL default '',
+ PRIMARY KEY (aid)
+) TYPE=MyISAM;
+
+-- Table for storing Annodex clip information.
+-- FIXME Make start and end timestamps rather than strings.
+CREATE TABLE acidfree_annodex_clips (
+ aid int(11) NOT NULL REFERENCES acidfree_annodex(aid) ON DELETE CASCADE,
+ a varchar(511),
+ img varchar(511),
+ description varchar(1023),
+ start varchar(127),
+ end varchar(127)
+) TYPE=MyISAM;
--
ctford
More information about the cvs-annodex
mailing list