Advertisement
Guest User

Untitled

a guest
Jun 25th, 2013
642
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public function getSqlTitleField()
  2. {
  3. return array(
  4. array(
  5. 'table' => 'quiz',
  6. 'field' => 'title',
  7. 'has_index' => 'title'
  8. ),
  9. array(
  10. 'table' => 'quiz_answer',
  11. 'field' => 'answer'
  12. ),
  13. array(
  14. 'table' => 'quiz_question',
  15. 'field' => 'question'
  16. ),
  17. array(
  18. 'table' => 'quiz',
  19. 'field' => 'description'
  20. )
  21. );
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement