Changeset 1417
- Timestamp:
- 02/27/08 01:58:06 (5 months ago)
- Files:
-
- branches/release-30/build/mt-dists/default.mk (modified) (1 diff)
- branches/release-30/lib/MT/TheSchwartz/Job.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/release-30/build/mt-dists/default.mk
r1398 r1417 2 2 3 3 PRODUCT_VERSION = 4.2 4 SCHEMA_VERSION = 4.003 84 SCHEMA_VERSION = 4.0039 5 5 API_VERSION = 4.2 6 6 branches/release-30/lib/MT/TheSchwartz/Job.pm
r1401 r1417 25 25 primary_key => 'jobid', 26 26 indexes => { 27 funcid => 1, 28 coalesce => 1, 29 uniqkey => 1, 30 run_after => 1, 31 priority => 1, 27 funccoal => { 28 columns => [ 'funcid', 'coalesce' ], 29 }, 30 funcrun => { 31 columns => [ 'funcid', 'run_after' ], 32 }, 33 funcpri => { 34 columns => [ 'funcid', 'priority' ], 35 }, 32 36 uniqfunc => { 33 37 columns => [ 'funcid', 'uniqkey' ], … … 35 39 }, 36 40 }, 37 # not captured (but indexed separately)38 # INDEX (funcid, run_after),39 # INDEX (funcid, coalesce)40 41 }); 41 42
