mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
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';
|
||
|
}
|