CREATE TABLE imagedb (
  image_name VARCHAR(255) NOT NULL PRIMARY KEY,
  content BLOB,
  description LONGTEXT
);
