erste version der DB dateien erstellt

This commit is contained in:
2026-04-08 16:23:02 +02:00
parent 8a5a44886d
commit a31dfc03ff
11 changed files with 1154 additions and 10 deletions

View File

@@ -0,0 +1,16 @@
create table lg_app_log (
log_id number generated by default as identity not null enable
,log_timestamp timestamp not null
,log_level varchar2(10 char) not null
,log_module varchar2(100 char) not null
,log_action varchar2(100 char)
,log_object_ref varchar2(512 char)
,log_message varchar2(4000 char)
,log_detail clob
,log_user varchar2(100 char)
,log_session_id number
);
alter table lg_app_log
add constraint pk_lg_app_log primary key (lg_app_log_id)
using index enable;