Guest User

Untitled

a guest
Jun 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2.  
  3. class Chart extends AppModel
  4. {
  5. var $name = 'Chart';
  6. var $primaryKey = 'chart_id';
  7. var $hasAndBelongsToMany = array(
  8. 'Rack' =>
  9. array(
  10. 'className' => 'Rack',
  11. 'with' => 'ChartItem',
  12. 'foreignKey' => 'rack_id',
  13. 'associationForeignKey' => 'chart_id',
  14. 'unique' => true
  15. ));
  16.  
  17.  
  18. }
  19.  
  20.  
  21.  
  22. ?>
Add Comment
Please, Sign In to add comment