Changeset 4342 for trunk/tests/models

Show
Ignore:
Timestamp:
05/08/08 15:17:35 (8 months ago)
Author:
romanb
Message:

Continued work on new hydration.

Location:
trunk/tests/models
Files:
3 added
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/tests/models/cms/CmsArticle.php

    r4339 r4342  
    88      $class->mapColumn('text', 'string'); 
    99      $class->mapColumn('user_id', 'integer', 4); 
     10      $class->hasMany('CmsComment as comments', array( 
     11            'local' => 'id', 'foreign' => 'article_id')); 
    1012  } 
    1113}