* convert over to Module::Build
[bioperl-db.git] / sql / rawdata-mysql.sql
blob3cc6c683e32088373fea28c12b03748424b1b6f2
1 -- this file contains definitions used for storing arbitrary raw data
2 -- such as images (only thing so far).
3 -- An image contains its ID, a path to the image data (e.g. a URL or file path),
4 -- the name of the table in which more information can be found (probably violates
5 -- lots of database rules) and the primary id.
6 CREATE TABLE image (
7     image_id         integer(11) not null AUTO_INCREMENT PRIMARY KEY;
8     image_path       varchar(256) not null,
9     table_name       varchar(64),
10     table_id         integer(11)