42 lines
879 B
PHP
42 lines
879 B
PHP
<?php namespace GermanAirlinesVa\Schooling\Models;
|
|
|
|
use Model;
|
|
|
|
/**
|
|
* Model
|
|
*/
|
|
class ExamTyperatingQuestion extends Model
|
|
{
|
|
use \October\Rain\Database\Traits\Validation;
|
|
|
|
/*
|
|
* Disable timestamps by default.
|
|
* Remove this line if timestamps are defined in the database table.
|
|
*/
|
|
public $timestamps = false;
|
|
|
|
/**
|
|
* @var string The database table used by the model.
|
|
*/
|
|
public $table = 'exam_questions';
|
|
protected $connection = 'germanairlinesva_schooling';
|
|
|
|
/**
|
|
* @var array Validation rules
|
|
*/
|
|
public $rules = [
|
|
'typerating' => 'required',
|
|
'in_use' => 'required',
|
|
'mandatory' => 'required',
|
|
'text' => 'required',
|
|
];
|
|
|
|
public $hasMany = [
|
|
'exam_answers' => 'GermanAirlinesVa\Schooling\Models\ExamTyperatingAnswer',
|
|
];
|
|
|
|
public $belongsTo = [
|
|
'typerating' => 'GermanAirlinesVa\Schooling\Models\Typerating',
|
|
];
|
|
}
|