mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Add the ordinal value for an edge case that requires it when it shouldn't be required.
This commit is contained in:
@@ -54,8 +54,8 @@
|
||||
$apps[$x]['db'][$y]['fields'][$z]['deprecated'] = "true";
|
||||
$z++;
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "call_broadcast_uuid";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'][] = "call_call_broadcast_uuid";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'][] = "broadcast_uuid";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'][0] = "call_call_broadcast_uuid";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'][1] = "broadcast_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']['mysql'] = "char(36)";
|
||||
|
||||
@@ -103,8 +103,8 @@
|
||||
$z = 0; //field array index
|
||||
$apps[$x]['db'][$y]['table'] = "v_rss";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "id";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'][] = "rssid";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'][] = "rss_id";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'][0] = "rssid";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'][1] = "rss_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";
|
||||
@@ -233,8 +233,8 @@
|
||||
$z = 0; //field array index
|
||||
$apps[$x]['db'][$y]['table'] = "v_rss_sub";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "id";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'][] = "rsssubid";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'][] = "rss_sub_id";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'][0] = "rsssubid";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'][1] = "rss_sub_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";
|
||||
@@ -352,8 +352,8 @@
|
||||
$z = 0; //field array index
|
||||
$apps[$x]['db'][$y]['table'] = "v_rss_sub_category";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "id";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'][] = "rsssubcategoryid";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'][] = "rss_sub_category_id";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'][0] = "rsssubcategoryid";
|
||||
$apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'][1] = "rss_sub_category_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";
|
||||
|
||||
Reference in New Issue
Block a user