Changeset 4342 for trunk/tests/models
- Timestamp:
- 05/08/08 15:17:35 (8 months ago)
- Location:
- trunk/tests/models
- Files:
-
- 3 added
- 1 modified
-
cms/CmsArticle.php (modified) (1 diff)
-
cms/CmsComment.php (added)
-
forum/ForumBoard.php (added)
-
forum/ForumCategory.php (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/models/cms/CmsArticle.php
r4339 r4342 8 8 $class->mapColumn('text', 'string'); 9 9 $class->mapColumn('user_id', 'integer', 4); 10 $class->hasMany('CmsComment as comments', array( 11 'local' => 'id', 'foreign' => 'article_id')); 10 12 } 11 13 }