You are here

class OpignoTincanQuestionTypePropertiesDatabase in Opigno TinCan Question Type 7

This class provide the information about the question properties table.

Hierarchy

Expanded class hierarchy of OpignoTincanQuestionTypePropertiesDatabase

File

includes/opigno_tincan_question_type.databases.inc, line 15
This file contains the classes corresponding to each database's table.

View source
class OpignoTincanQuestionTypePropertiesDatabase {
  const NAME = 'opigno_tincan_question_type_question_properties';
  public static $fields = array(
    'nid' => array(
      'type' => 'int',
      'unsigned' => TRUE,
      'not null' => TRUE,
    ),
    'vid' => array(
      'type' => 'int',
      'unsigned' => TRUE,
      'not null' => TRUE,
    ),
    'fid' => array(
      'type' => 'int',
      'unsigned' => TRUE,
      'not null' => TRUE,
    ),
    'activity_id' => array(
      'type' => 'text',
    ),
    'launch_filename' => array(
      'type' => 'text',
    ),
  );
  public static $indexes = array(
    'question_nid' => array(
      'nid',
    ),
    'question_vid' => array(
      'vid',
    ),
  );

}

Members