psa.Cards
Overview
The Cards
table contains contact information for users who access Plesk on the server.
Column Descriptions
id – primary key that is automatically incremented
personalName – the contact’s name
companyName – the company’s name
phone – phone number
fax – fax number
email – e-mail address
address – street address
city – city
state – state
zip – zip code
country – country
Table Structure
CREATE TABLE `Cards` ( `id` int(10) unsigned NOT NULL auto_increment, `personalName` varchar(255) character set utf8 NOT NULL default '', `companyName` varchar(255) character set utf8 default NULL, `phone` varchar(255) character set ascii default NULL, `fax` varchar(255) character set ascii default NULL, `email` varchar(255) character set utf8 default NULL, `address` varchar(255) character set utf8 default NULL, `city` varchar(255) character set utf8 default NULL, `state` varchar(255) character set utf8 default NULL, `zip` varchar(10) character set ascii collate ascii_bin default NULL, `country` char(2) character set ascii collate ascii_bin default NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=latin1 |