mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 11:41:27 +08:00
17 lines
237 B
PHP
17 lines
237 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Model extends \Phalcon\Mvc\Model
|
|
{
|
|
|
|
public function initialize()
|
|
{
|
|
$this->setup([
|
|
'notNullValidations' => false,
|
|
]);
|
|
|
|
$this->useDynamicUpdate(true);
|
|
}
|
|
|
|
} |