Fixing content type ordering when content_type is not defined.
[akelos.git] / test / fixtures / app / models / tag.php
blob28fc74082cb3908e7eaf899fb84f6c4f02c1460b
1 <?php
3 class Tag extends AkActiveRecord
5 var $habtm = array(
6 'files' => array(
7 'join_table' => 'taggings',
8 'join_class_name' => 'Tagging'
9 ),
10 'posts'
13 var $has_many = 'taggings';