0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
vtiger
/
5.0.4
/
global
/
[
Home
]
File: migration_netsol.php
<?php include_once('include/database/PearDatabase.php'); include_once('include/utils/utils.php'); /** * this migration file is required to make the database changes for netsol customization */ global $adb; $query = "create table vtiger_emaildomainname (domainname varchar(50) not null)"; $result = $adb->query($query); if(is_object($result)){ //echo '<tr width="100%"> // <td width="10%"><font color="green"> Sucess </font></td> // <td width="80%">'.$query.'</td> // </tr>'; }else{ echo "Failure"; } ?>