You are here

function opigno_tincan_question_type_schema in Opigno TinCan Question Type 7

Implements hook_schema().

File

./opigno_tincan_question_type.install, line 23

Code

function opigno_tincan_question_type_schema() {
  return array(
    OpignoTincanQuestionTypePropertiesDatabase::NAME => array(
      'fields' => OpignoTincanQuestionTypePropertiesDatabase::$fields,
      'indexes' => OpignoTincanQuestionTypePropertiesDatabase::$indexes,
    ),
    OpignoTincanQuestionTypeAnswersDatabase::NAME => array(
      'fields' => OpignoTincanQuestionTypeAnswersDatabase::$fields,
      'indexes' => OpignoTincanQuestionTypeAnswersDatabase::$indexes,
    ),
  );
}