Show
Ignore:
Timestamp:
04/11/08 19:19:30 (20 months ago)
Author:
bchoate
Message:

Changes to store binary state to junk_status column. BugId:79280

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/release-34/lib/MT/TBPing.pm

    r1578 r1866  
    1010use base qw( MT::Object MT::Scorable ); 
    1111 
    12 use constant JUNK => -1; 
    13 use constant NOT_JUNK => 1; 
     12sub JUNK()      { -1 } 
     13sub NOT_JUNK () {  1 } 
    1414 
    1515__PACKAGE__->install_properties({ 
     
    5252    }, 
    5353    defaults => { 
    54         junk_status => 0, 
     54        junk_status => NOT_JUNK, 
    5555        last_moved_on => '20000101000000', 
    5656    },