!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!! MySQL 3.22 users, take note!     !!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

You have to modify by hand the file 'struct/object_track.sql' so you
don't get an error. You just need to change one line.

Old line (this is bad):

 action        varchar(10) default 'create',


New line (this is good):

 action        varchar(10) not null default 'create',


MAKE THIS CHANGE BEFORE YOU RUN 'install_sql' from 'oi_manage'!
Otherwise you'll get an error like:

        * Cannot execute table SQL
      CREATE TABLE object_track (
       class         varchar(50) not null,
       object_id     varchar(150) not null,
       action        varchar(10) default 'create',
       action_by     INT not null,
       action_on     datetime not null,
       notes         text null,
       primary key   ( class, object_id, action, action_by,
      action_on )
      )
      Error: DBD::mysql::db do failed: Column 'action' is
      used with UNIQUE or INDEX but is not defined as NOT
      NULL at

