<?php
// custom/Extension/modules/Accounts/Ext/Vardefs/accounts_documents_relationship.php
$dictionary['accounts_documents'] = array(
'true_relationship_type' => 'many-to-many',
'from_studio' => true,
'relationships' => array(
'accounts_documents' => array(
'lhs_module' => 'Accounts',
'lhs_table' => 'accounts',
'lhs_key' => 'id',
'rhs_module' => 'Documents',
'rhs_table' => 'documents',
'rhs_key' => 'id',
'relationship_type' => 'many-to-many',
'join_table' => 'accounts_documents',
'join_key_lhs' => 'account_id',
'join_key_rhs' => 'document_id',
),
),
);