svn+ssh://danydb@svn/svn/phpcompta/branches/rel500 ........ r2869 | danydb | 2010-01-14 14:41:25 +0100 (Thu, 14 Jan 2010) | 1 line Bug : fiche_attribut_synchro is really low, solution is to create 2 indexes ........
9 lines
196 B
PL/PgSQL
9 lines
196 B
PL/PgSQL
begin;
|
|
-- View: vw_fiche_def
|
|
|
|
create index jnt_fic_att_value_fd_id_idx on jnt_fic_att_value(f_id);
|
|
create index jnt_fic_attr_fd_id_idx on jnt_fic_attr(fd_id);
|
|
|
|
update version set val=63;
|
|
|
|
commit;
|