• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.

psa.subdomains

M

morrisqueto

Guest
psa.subdomains SQL (for creating the table)

Could someone give me the sql query for creating the subdomains table ???
It seems it is incomplete after a system upgrade... it is missing the 'fp' coumn, and maybe others.
 
/*
SQLyog v4.0
Host - localhost : Database - psa
**************************************************************
Server version 4.0.20a-nt
*/

create database if not exists `psa`;

use `psa`;

/*
Table structure for subdomains
*/

drop table if exists `subdomains`;
CREATE TABLE `subdomains` (
`id` int(10) unsigned NOT NULL auto_increment,
`dom_id` int(10) unsigned NOT NULL default '0',
`name` varchar(255) NOT NULL default '',
`sys_user_type` enum('main','native') NOT NULL default 'main',
`sys_user_id` int(10) unsigned NOT NULL default '0',
`ssi` enum('false','true','partial') NOT NULL default 'false',
`php` enum('false','true') NOT NULL default 'false',
`cgi` enum('false','true') NOT NULL default 'false',
`perl` enum('false','true') NOT NULL default 'false',
`python` enum('false','true') NOT NULL default 'false',
`coldfusion` enum('false','true') NOT NULL default 'false',
`asp` enum('false','true') NOT NULL default 'false',
`asp_dot_net` enum('false','true') NOT NULL default 'false',
`fp` enum('false','true') NOT NULL default 'false',
`fp_enable` enum('false','true') NOT NULL default 'false',
PRIMARY KEY (`id`),
UNIQUE KEY `dom_id` (`dom_id`,`name`)
) TYPE=InnoDB;

/*
Table data for psa.subdomains
*/
 
Back
Top