mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-04 08:04:12 +01:00 
			
		
		
		
	* Modified the type of the 'FEED_IMAGES.DATA' database field to 'longblob'. * Incremented the database version to 336. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
		
			
				
	
	
		
			17 lines
		
	
	
		
			652 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			652 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          varchar(191)
 | 
						|
FILE_EXTENSION       varchar(10)
 | 
						|
DATA                 longblob
 |