Ignore:
Timestamp:
Jul 18, 2015, 5:06:52 PM (9 years ago)
Author:
katerina
Message:

Enhancements and fixes for tickets #374, #375, #376, #377, #378, and #379.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/docs/README.UPGRADE

    r297 r481  
     1to 4.0.0 and higher: if you use "ReportCheckflags = yes" (off by default),
     2  you need to change the database scheme:
     3
     4  -- mysql:
     5          ALTER TABLE samhain.log ADD COLUMN checkflags_old BIGINT UNSIGNED;
     6          ALTER TABLE samhain.log ADD COLUMN checkflags_new BIGINT UNSIGNED;
     7
     8  -- postgres:
     9          ALTER TABLE samhain.log ADD COLUMN checkflags_old NUMERIC(20);
     10          ALTER TABLE samhain.log ADD COLUMN checkflags_new NUMERIC(20);
     11
     12  --oracle:
     13          ALTER TABLE samhain.log ADD checkflags_old NUMBER(20);
     14          ALTER TABLE samhain.log ADD checkflags_new NUMBER(20);
     15
    116to 2.8.0 and higher: samhain supports IPv6 now, which means that the
    217  size of the 'ip' column in the database must be increased from
     
    4055  -- this may cause spurious warnings about modified links, if you check
    4156     against a database created with an earlier version of samhain
    42 
    43 
    4457
    4558from lower to 2.3.x: the database scheme has changed slightly.
Note: See TracChangeset for help on using the changeset viewer.