Changeset 1763

Show
Ignore:
Timestamp:
04/03/08 22:46:20 (5 months ago)
Author:
mpaschal
Message:

Declare these meta objects as objects, until the upgrader can know them automatically
BugzID: 68749

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/feature-narrow-tables/lib/MT/Asset.pm

    r1564 r1763  
    4141}); 
    4242 
     43__PACKAGE__->install_meta({ 
     44    columns => [], 
     45}); 
     46 
    4347require MT::Asset::Image; 
    4448require MT::Asset::Audio; 
  • branches/feature-narrow-tables/lib/MT/Core.pm

    r1535 r1763  
    5151        object_types   => { 
    5252            'entry'           => 'MT::Entry', 
     53            'entry_meta'      => 'MT::Entry::Meta', 
    5354            'author'          => 'MT::Author', 
     55            'author_meta'     => 'MT::Author::Meta', 
    5456            'asset'           => 'MT::Asset', 
     57            'asset_meta'      => 'MT::Asset::Meta', 
    5558            'file'            => 'MT::Asset', 
    5659            'asset.image'     => 'MT::Asset::Image', 
     
    6972            'blog'            => 'MT::Blog', 
    7073            'template'        => 'MT::Template', 
     74            'template_meta'   => 'MT::Template::Meta', 
    7175            'comment'         => 'MT::Comment', 
    7276            'notification'    => 'MT::Notification', 
  • branches/feature-narrow-tables/lib/MT/Entry.pm

    r1597 r1763  
    105105}); 
    106106 
     107__PACKAGE__->install_meta({ 
     108    columns => [], 
     109}); 
     110 
    107111sub HOLD ()    { 1 } 
    108112sub RELEASE () { 2 }