Restructure file , remove html/admin , backup ...

This commit is contained in:
Dany De Bontridder 2015-10-18 23:39:20 +02:00
parent b57df7c0e8
commit 896f3624c7
169 changed files with 48 additions and 54 deletions

View file

@ -0,0 +1,14 @@
begin;
alter table import_tmp add jr_rapt text;
delete from jnt_fic_attr
where jnt_id in (
select a.jnt_id
from jnt_fic_attr as a join jnt_fic_attr as b
on (a.fd_id=b.fd_id and a.ad_id=b.ad_id)
where b.jnt_id > a.jnt_id);
create unique index fd_id_ad_id_x on jnt_fic_attr( fd_id,ad_id);
update version set val=22;
commit;