PageRenderTime 45ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/app/Model/Pack.php

https://github.com/adamncsu/webdraft
PHP | 15 lines | 11 code | 4 blank | 0 comment | 0 complexity | 9ffc94809258cbcae51aa1b17df69b26 MD5 | raw file
  1. <?php
  2. class Pack extends AppModel{
  3. var $hasMany = array(
  4. 'Card' => array(
  5. 'className' => 'Card',
  6. 'foreignKey' => 'pack_id',
  7. 'dependent' => true
  8. )
  9. );
  10. }
  11. ?>