psa.Templates
Overview
The Templates
table contains hosting packages configured for use by clients on the server.
Column Descriptions
id – primary key that is automatically incremented
name – name of the hosting package
note_id – a note about the package
Table Structure
CREATE TABLE `Templates` ( `id` int(10) unsigned NOT NULL auto_increment, `name` varchar(255) character set utf8 NOT NULL default '', `note_id` int(10) unsigned default NULL, PRIMARY KEY (`id`), KEY `note_id` (`note_id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 |