HEX
Server: Apache
System: Linux sg241.singhost.net 2.6.32-896.16.1.lve1.4.51.el6.x86_64 #1 SMP Wed Jan 17 13:19:23 EST 2018 x86_64
User: honghock (909)
PHP: 8.0.30
Disabled: passthru,system,shell_exec,show_source,exec,popen,proc_open
Upload Files
File: //opt/cloudlinux/alt-php54/root/usr/share/pear/RVSeagullMod/modules/main/data/schema.my.sql
/*==============================================================*/
/* Table: example                                                 */
/*==============================================================*/
CREATE TABLE if not exists `example` (
`usr_id` INT( 2 ) NOT NULL ,
`name` VARCHAR( 20 ) NOT NULL ,
`email` VARCHAR( 50 ) NOT NULL ,
PRIMARY KEY ( `usr_id` )
) ENGINE=MyISAM;

/*==============================================================*/
/* Table: web_lang                                                 */
/*==============================================================*/
CREATE TABLE if not exists `web_lang` (
  `web_lang_id` int(2) NOT NULL,
  `lang_key` varchar(32) NOT NULL,
  PRIMARY KEY  (`web_lang_id`)
) ENGINE=MyISAM;


#==============================================================#
# Table: user_hash                                
#==============================================================#
CREATE TABLE if not exists user_hash (
  user_hash_id int(11) NOT NULL default '0',
  usr_id int(11) NOT NULL default '0',
  hash varchar(64) NOT NULL,
  ctime int(11) NOT NULL,
  PRIMARY KEY  (user_hash_id),
  KEY usr_id (usr_id)
) ENGINE=MyISAM;