repo.or.cz
/
akelos.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
New records could not hold multiple habtm associates using ::set(). Fixes #160.
[akelos.git]
/
test
/
fixtures
/
app
/
models
/
file.php
blob
e8f323624f37385fff23d56b38d87ecc8b1ed46b
1
<
?php
2
3
class
File
extends
AkActiveRecord
4
{
5
var
$habtm
=
array
(
6
'tags'
=>
array
(
7
'join_table'
=>
'taggings'
,
8
'join_class_name'
=>
'Tagging'
9
)
10
);
11
12
var
$has_many
=
'taggings'
;
13
}
14
15
?
>