IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 25, 2012, 1:43:54 PM (14 years ago)
Author:
Serge CHASTEL
Message:

Added lost_instances table

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous-Server/lib/Nebulous/Server/SQL.pm

    r31410 r33826  
    750750###
    751751
     752CREATE TABLE lost_instances (
     753    id BIGINT NOT NULL AUTO_INCREMENT,
     754    ins_id BIGINT NOT NULL DEFAULT -1,
     755    so_id BIGINT NOT NULL DEFAULT -1,
     756    vol_id INT NOT NULL DEFAULT -1,
     757    uri CHAR(255) NOT NULL DEFAULT 'undefined',
     758    epoch TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
     759    mtime TIMESTAMP,
     760    PRIMARY KEY(id),
     761    KEY(so_id),
     762    KEY(vol_id),
     763    KEY(uri(40))
     764) ENGINE=innodb DEFAULT CHARSET=latin1;
     765
     766###
     767
    752768CREATE TABLE log (
    753769    timestamp TIMESTAMP,
Note: See TracChangeset for help on using the changeset viewer.