Commit 004c8bb0 authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Merge branch 'ModuleSoutenance' into zf3

parents d9e93555 612d01e9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -35,6 +35,7 @@ $modules = ['Zend\Cache',
    'Import',
    'Indicateur',
    'Retraitement',
    'Soutenance',
    'Notification',
    'Information',
    'Application',
+17 −0
Original line number Diff line number Diff line
insert into API_LOG(ID, REQ_URI, REQ_START_DATE, REQ_END_DATE, REQ_STATUS, REQ_RESPONSE, REQ_ETABLISSEMENT, REQ_TABLE)
select API_LOG_ID_SEQ.nextval, 'xxxxx', sysdate, sysdate, 'test', 'hello!!', 'UCN', 'TEST' from dual
/

declare
    d date;
begin
    select sysdate into d from dual;
    insert into API_LOG(ID, REQ_URI, REQ_START_DATE, REQ_END_DATE, REQ_STATUS, REQ_RESPONSE, REQ_ETABLISSEMENT, REQ_TABLE)
    select API_LOG_ID_SEQ.nextval, 'yyyyy', d, d, 'test', 'hello!!', 'UCN', 'TEST' from dual;
end;
/

create index TEST_index on FICHIER (HISTO_MODIFICATION ASC)
/
drop index TEST_index
/
 No newline at end of file
+1142 −0

File added.

Preview size limit exceeded, changes collapsed.

data/SQL/75-substisutions.sql

100644 → 100755
+0 −0

File mode changed from 100644 to 100755.

data/SQL/ecole_doct.sql

100644 → 100755
+0 −0

File mode changed from 100644 to 100755.

Loading