Changeset 5191 for trunk/PS-IPP-MetaDB/lib/PS/IPP/MetaDB.pm
- Timestamp:
- Sep 29, 2005, 1:06:50 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/PS-IPP-MetaDB/lib/PS/IPP/MetaDB.pm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/PS-IPP-MetaDB/lib/PS/IPP/MetaDB.pm
r5189 r5191 1 1 # Copyright (C) 2005 Joshua Hoblitt 2 2 # 3 # $Id: MetaDB.pm,v 1. 5 2005-09-29 22:11:27jhoblitt Exp $3 # $Id: MetaDB.pm,v 1.6 2005-09-29 23:06:50 jhoblitt Exp $ 4 4 5 5 package PS::IPP::MetaDB; … … 145 145 =over 4 146 146 147 =item * exp_id 148 149 exposure ID # 150 151 =item * class 152 153 The 'type' of data this is 154 155 =item * class_id 156 157 A unique identifier for data of the same class in the same exposure. 158 159 =item * camera 160 161 Camera that this data was acquired from 162 163 =item * stamp 164 165 Date/Time stamp of file when the file became available. 166 167 =item * size 168 169 The size of the file in bytes. 170 171 =item * md5 172 173 The md5 checksum of the file in hexadecimal form (ASCII). 174 147 175 =item * url 148 176 149 177 URL to retrieve data from 150 151 =item * exp_id152 153 exposure ID #154 155 =item * camera156 157 Camera that this data was acquired from158 159 =item * class160 161 The 'type' of data this is162 163 =item * class_id164 165 A unique identifier for data of the same class in the same exposure.166 178 167 179 =back … … 180 192 __PACKAGE__->create_table(q{ 181 193 exp_id BIGINT NOT NULL PRIMARY KEY, 194 class VARCHAR(255), 182 195 class_id BIGINT NOT NULL, 183 196 camera VARCHAR(255), 184 class VARCHAR(255), 197 stamp DATETIME, 198 size INT, 199 md5 VARCHAR(32), 185 200 url VARCHAR(255) NOT NULL 186 201 });
Note:
See TracChangeset
for help on using the changeset viewer.
