mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-21 11:18:10 +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);
|
|
}
|
|
|
|
} |