New records could not hold multiple habtm associates using ::set(). Fixes #160.
[akelos.git] / test / fixtures / app / models / file.php
blobe8f323624f37385fff23d56b38d87ecc8b1ed46b
1 <?php
3 class File extends AkActiveRecord
5 var $habtm = array(
6 'tags' => array(
7 'join_table' => 'taggings',
8 'join_class_name' => 'Tagging'
12 var $has_many = 'taggings';