From 341dbe6eff6f8b4ca37b97bfeb28e284f98e07fa Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Mon, 4 Dec 2023 10:44:38 -0700 Subject: [PATCH] Remove deprecated field ID This was done so long ago that it can now be fully removed. --- app/contacts/app_config.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/app/contacts/app_config.php b/app/contacts/app_config.php index 602194107e..fb5ee4b048 100644 --- a/app/contacts/app_config.php +++ b/app/contacts/app_config.php @@ -240,13 +240,6 @@ $apps[$x]['db'][$y]['table']['name'] = "v_contacts"; $apps[$x]['db'][$y]['table']['parent'] = ""; $z=0; - $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "id"; - $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "contact_id"; - $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "serial"; - $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "integer"; - $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "INT NOT NULL AUTO_INCREMENT"; - $apps[$x]['db'][$y]['fields'][$z]['deprecated'] = "true"; - $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "contact_uuid"; $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "uuid"; $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";