1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-21 11:18:10 +08:00
2019-12-13 00:10:10 +08:00

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);
}
}