Add fax date, epoch and primary key for the fax_logs table
This commit is contained in:
+16
-7
@@ -273,13 +273,13 @@
|
|||||||
$y = 2; //table array index
|
$y = 2; //table array index
|
||||||
$z = 0; //field array index
|
$z = 0; //field array index
|
||||||
$apps[$x]['db'][$y]['table'] = "v_fax_logs";
|
$apps[$x]['db'][$y]['table'] = "v_fax_logs";
|
||||||
//$apps[$x]['db'][$y]['fields'][$z]['name'] = "fax_log_uuid";
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "fax_log_uuid";
|
||||||
//$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
|
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
|
||||||
//$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
|
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
|
||||||
//$apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(36)";
|
$apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "char(36)";
|
||||||
//$apps[$x]['db'][$y]['fields'][$z]['key']['type'] = "primary";
|
$apps[$x]['db'][$y]['fields'][$z]['key']['type'] = "primary";
|
||||||
//$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
||||||
//$z++;
|
$z++;
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = "domain_uuid";
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "domain_uuid";
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
|
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid";
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
|
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
|
||||||
@@ -292,6 +292,7 @@
|
|||||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = "domain_name";
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "domain_name";
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
||||||
|
$apps[$x]['db'][$y]['fields'][$z]['deprecated'] = "true";
|
||||||
$z++;
|
$z++;
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = "fax_success";
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "fax_success";
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
||||||
@@ -362,5 +363,13 @@
|
|||||||
$apps[$x]['db'][$y]['fields'][$z]['name'] = "fax_uri";
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "fax_uri";
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
||||||
|
$z++;
|
||||||
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "fax_date";
|
||||||
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "date";
|
||||||
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
||||||
|
$z++;
|
||||||
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "fax_epoch";
|
||||||
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric";
|
||||||
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
||||||
|
|
||||||
?>
|
?>
|
||||||
Reference in New Issue
Block a user