forked from salesagility/SuiteCRM
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improvement - Personas y Organizaciones - Incluir índice por número d…
…e identificación (#412)
- Loading branch information
1 parent
5f0a7bb
commit 7a6665f
Showing
2 changed files
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
-- Índices identificados para agilizar algunas consultas clave que se ejecutan sobre campos custom y que, por tanto, no pueden definirse vía vardefs. | ||
|
||
create index stic_idx_identification_number on contacts_cstm(stic_identification_number_c); | ||
create index stic_idx_identification_number on accounts_cstm(stic_identification_number_c); |
4 changes: 4 additions & 0 deletions
4
SticUpdates/Migrations/20240930_Indices_identification_number.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
-- Índices identificados para agilizar algunas consultas clave que se ejecutan sobre campos custom y que, por tanto, no pueden definirse vía vardefs. | ||
|
||
create or replace index stic_idx_identification_number on contacts_cstm(stic_identification_number_c); | ||
create or replace index stic_idx_identification_number on accounts_cstm(stic_identification_number_c); |