mirror of
https://github.com/kuaifan/dootask.git
synced 2026-09-10 22:19:02 +00:00
11 lines
166 B
PHP
11 lines
166 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class WebDavOperationLog extends AbstractModel
|
|
{
|
|
protected $table = 'webdav_operation_logs';
|
|
|
|
public const UPDATED_AT = null;
|
|
}
|