Index: /trunk/PS-IPP-MetaDB/lib/PS/IPP/MetaDB.pm
===================================================================
--- /trunk/PS-IPP-MetaDB/lib/PS/IPP/MetaDB.pm	(revision 5190)
+++ /trunk/PS-IPP-MetaDB/lib/PS/IPP/MetaDB.pm	(revision 5191)
@@ -1,5 +1,5 @@
 # Copyright (C) 2005  Joshua Hoblitt
 #
-# $Id: MetaDB.pm,v 1.5 2005-09-29 22:11:27 jhoblitt Exp $
+# $Id: MetaDB.pm,v 1.6 2005-09-29 23:06:50 jhoblitt Exp $
 
 package PS::IPP::MetaDB;
@@ -145,23 +145,35 @@
 =over 4
 
+=item * exp_id
+
+exposure ID #
+
+=item * class
+
+The 'type' of data this is
+
+=item * class_id
+
+A unique identifier for data of the same class in the same exposure.
+
+=item * camera
+
+Camera that this data was acquired from
+
+=item * stamp
+
+Date/Time stamp of file when the file became available.
+
+=item * size
+
+The size of the file in bytes.
+
+=item * md5
+
+The md5 checksum of the file in hexadecimal form (ASCII).
+
 =item * url
 
 URL to retrieve data from
-
-=item * exp_id
-
-exposure ID #
-
-=item * camera
-
-Camera that this data was acquired from
-
-=item * class
-
-The 'type' of data this is
-
-=item * class_id
-
-A unique identifier for data of the same class in the same exposure.
 
 =back
@@ -180,7 +192,10 @@
     __PACKAGE__->create_table(q{
         exp_id      BIGINT          NOT NULL PRIMARY KEY,
+        class       VARCHAR(255),
         class_id    BIGINT          NOT NULL,
         camera      VARCHAR(255),
-        class       VARCHAR(255),
+        stamp       DATETIME,
+        size        INT,
+        md5         VARCHAR(32),
         url         VARCHAR(255)    NOT NULL
     });
