Changeset 68 for trunk/sql_init
- Timestamp:
- Oct 30, 2006, 12:03:44 AM (18 years ago)
- Location:
- trunk/sql_init
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sql_init/samhain.mysql.init
r1 r68 86 86 iowner_new BIGINT, 87 87 igroup_old BIGINT, 88 igroup_new BIGINT 88 igroup_new BIGINT, 89 89 90 90 91 acl_old BLOB, 92 acl_new BLOB 91 93 92 94 ); -
trunk/sql_init/samhain.oracle.init
r1 r68 73 73 iowner_new NUMBER(20), 74 74 igroup_old NUMBER(20), 75 igroup_new NUMBER(20) 75 igroup_new NUMBER(20), 76 acl_old VARCHAR2(4000), 77 acl_new VARCHAR2(4000) 76 78 ); 77 78 CREATE OR REPLACE TRIGGER trigger_on_log79 before insert on log80 for each row81 declare82 log_index integer;83 begin84 select log_log_index_seq.NEXTVAL into :new.log_index from dual;85 end trigger_on_log;86 .87 run;88 79 89 80 CREATE UNIQUE INDEX log_log_index_key on log (log_index); -
trunk/sql_init/samhain.postgres.init
r35 r68 80 80 iowner_new BIGINT, 81 81 igroup_old BIGINT, 82 igroup_new BIGINT 82 igroup_new BIGINT, 83 83 84 acl_old TEXT, 85 acl_new TEXT 84 86 ); 85 87
Note:
See TracChangeset
for help on using the changeset viewer.