Changeset 392 for trunk/sql_init


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).

Location:
trunk/sql_init
Files:
2 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
  • trunk/sql_init/samhain.postgres.init

    r296 r392  
    6464        link_new      TEXT,
    6565       
    66         size_old      BIGINT,
    67         size_new      BIGINT,
    68         hardlinks_old BIGINT,
    69         hardlinks_new BIGINT,
    70         inode_old     BIGINT,
    71         inode_new     BIGINT,
     66        size_old      NUMERIC(20),
     67        size_new      NUMERIC(20),
     68        hardlinks_old NUMERIC(20),
     69        hardlinks_new NUMERIC(20),
     70        inode_old     NUMERIC(20),
     71        inode_new     NUMERIC(20),
    7272
    73         imode_old     BIGINT,
    74         imode_new     BIGINT,
    75         iattr_old     BIGINT,
    76         iattr_new     BIGINT,
    77         idevice_old   BIGINT,
    78         idevice_new   BIGINT,
    79         iowner_old    BIGINT,
    80         iowner_new    BIGINT,
    81         igroup_old    BIGINT,
    82         igroup_new    BIGINT,
     73        imode_old     NUMERIC(20),
     74        imode_new     NUMERIC(20),
     75        iattr_old     NUMERIC(20),
     76        iattr_new     NUMERIC(20),
     77        idevice_old   NUMERIC(20),
     78        idevice_new   NUMERIC(20),
     79        iowner_old    NUMERIC(20),
     80        iowner_new    NUMERIC(20),
     81        igroup_old    NUMERIC(20),
     82        igroup_new    NUMERIC(20),
    8383                 
    8484        acl_old       TEXT,
Note: See TracChangeset for help on using the changeset viewer.