Ignore:
Timestamp:
Feb 14, 2012, 8:42:53 PM (13 years ago)
Author:
katerina
Message:

Fix for ticket #289 (Integer columns not initialized to handle unsigned 64bit in SQL DB).

File:
1 edited

Legend:

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

    r296 r392  
    7070        link_new      BLOB,
    7171       
    72         size_old      BIGINT,
    73         size_new      BIGINT,
    74         hardlinks_old BIGINT,
    75         hardlinks_new BIGINT,
    76         inode_old     BIGINT,
    77         inode_new     BIGINT,
     72        size_old      BIGINT UNSIGNED,
     73        size_new      BIGINT UNSIGNED,
     74        hardlinks_old BIGINT UNSIGNED,
     75        hardlinks_new BIGINT UNSIGNED,
     76        inode_old     BIGINT UNSIGNED,
     77        inode_new     BIGINT UNSIGNED,
    7878
    79         imode_old     BIGINT,
    80         imode_new     BIGINT,
    81         iattr_old     BIGINT,
    82         iattr_new     BIGINT,
    83         idevice_old   BIGINT,
    84         idevice_new   BIGINT,
    85         iowner_old    BIGINT,
    86         iowner_new    BIGINT,
    87         igroup_old    BIGINT,
    88         igroup_new    BIGINT,
     79        imode_old     BIGINT UNSIGNED,
     80        imode_new     BIGINT UNSIGNED,
     81        iattr_old     BIGINT UNSIGNED,
     82        iattr_new     BIGINT UNSIGNED,
     83        idevice_old   BIGINT UNSIGNED,
     84        idevice_new   BIGINT UNSIGNED,
     85        iowner_old    BIGINT UNSIGNED,
     86        iowner_new    BIGINT UNSIGNED,
     87        igroup_old    BIGINT UNSIGNED,
     88        igroup_new    BIGINT UNSIGNED,
    8989       
    9090
Note: See TracChangeset for help on using the changeset viewer.