psa.Logos
Overview
The Logos
table contains information about logos displayed at the top left corner of the Plesk interface for certain clients, or at the server level itself.
Column Descriptions
id – links to logo_id
in clients
table
name – filename of the logo image when it was uploaded
fake – filename used to store the logo on the server
url – the hyperlink applied to the logo
Table Structure
CREATE TABLE `Logos` ( `id` int(10) unsigned NOT NULL auto_increment, `name` varchar(255) character set utf8 default NULL, `fake` varchar(255) character set ascii collate ascii_bin default NULL, `url` varchar(255) character set utf8 default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 |