18 lines
350 B
PHP
18 lines
350 B
PHP
<?php namespace System\Models;
|
|
|
|
use October\Rain\Database\Models\Revision as RevisionBase;
|
|
|
|
/**
|
|
* Revision history model
|
|
*
|
|
* @package october\system
|
|
* @author Alexey Bobkov, Samuel Georges
|
|
*/
|
|
class Revision extends RevisionBase
|
|
{
|
|
/**
|
|
* @var string The database table used by the model.
|
|
*/
|
|
public $table = 'system_revisions';
|
|
}
|