Changeset 68 for trunk/sql_init


Ignore:
Timestamp:
Oct 30, 2006, 12:03:44 AM (18 years ago)
Author:
rainer
Message:

Update trunk to samhain 2.3

Location:
trunk/sql_init
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sql_init/samhain.mysql.init

    r1 r68  
    8686        iowner_new    BIGINT,
    8787        igroup_old    BIGINT,
    88         igroup_new    BIGINT
     88        igroup_new    BIGINT,
    8989       
    9090
     91        acl_old       BLOB,
     92        acl_new       BLOB
    9193                 
    9294        );
  • trunk/sql_init/samhain.oracle.init

    r1 r68  
    7373        iowner_new    NUMBER(20),
    7474        igroup_old    NUMBER(20),
    75         igroup_new    NUMBER(20)
     75        igroup_new    NUMBER(20),
     76        acl_old       VARCHAR2(4000),
     77        acl_new       VARCHAR2(4000)
    7678        );
    77 
    78 CREATE OR REPLACE TRIGGER trigger_on_log
    79 before insert on log
    80 for each row
    81 declare
    82 log_index integer;
    83 begin
    84 select log_log_index_seq.NEXTVAL into :new.log_index from dual;
    85 end trigger_on_log;
    86 .
    87 run;
    8879
    8980CREATE UNIQUE INDEX log_log_index_key on log (log_index);
  • trunk/sql_init/samhain.postgres.init

    r35 r68  
    8080        iowner_new    BIGINT,
    8181        igroup_old    BIGINT,
    82         igroup_new    BIGINT
     82        igroup_new    BIGINT,
    8383                 
     84        acl_old       TEXT,
     85        acl_new       TEXT
    8486        );
    8587
Note: See TracChangeset for help on using the changeset viewer.