ok here it is, mysql backup from cpanel, X theme.
WHM 8.8.0 cPanel 8.8.0-S74
RedHat 7.3 - WHM X v2.1.2
PHP Code:
-- MySQL dump 9.09
--
-- Host: localhost Database: xxxx_xxxx
---------------------------------------------------------
-- Server version 4.0.15-standard-log
--
-- Table structure for table `admins`
--
DROP TABLE IF EXISTS admins;
CREATE TABLE admins (
admin_id int(11) NOT NULL auto_increment,
name varchar(50) NOT NULL default '',
dept varchar(50) NOT NULL default '',
password varchar(20) NOT NULL default '',
add_time datetime NOT NULL default '0000-00-00 00:00:00',
flag int(11) NOT NULL default '0',
PRIMARY KEY (admin_id)
) TYPE=MyISAM;
--
-- Dumping data for table `admins`
--
--
-- Table structure for table `admintask`
--
DROP TABLE IF EXISTS admintask;
CREATE TABLE admintask (
admintask_id int(11) NOT NULL auto_increment,
admin_id int(11) NOT NULL default '0',
task_id int(11) NOT NULL default '0',
PRIMARY KEY (admintask_id)
) TYPE=MyISAM;
--
-- Dumping data for table `admintask`
--
Part dump from a mysql backup generated by cpanel. The DROP looks in place at present.
Perhaps it would be better once we know which build we are talking about.