mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-22 08:55:40 +02:00
* Added a 'FEED_IMAGES' table to the database. * Added 'feed_image_test' in 'tests/'. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
16 lines
613 B
Plaintext
16 lines
613 B
Plaintext
FEED_IMAGES Table Layout for Rivendell
|
|
|
|
The FEED_IMAGES table holds binary images used by podcast feeds.
|
|
|
|
|
|
FIELD NAME TYPE REMARKS
|
|
---------------------------------------------------------------
|
|
ID int(10) unsigned Primary key, auto increment
|
|
FEED_ID int(10) unsigned From FEEDS.ID
|
|
FEED_KEY_NAME varchar(8) From FEEDS.KEY_NAME
|
|
WIDTH int(11) signed Pixels
|
|
HEIGHT int(11) signed Pixels
|
|
DEPTH int(11) signed Bits/pixel
|
|
DESCRIPTION text
|
|
DATA mediumblob
|