【发布时间】:2015-07-05 11:03:32
【问题描述】:
如何将 $_schema 数组添加到 cakephp3 的表中?架构如下所示:
public $_schema = array(
'id' => array(
'type' => 'int',
'length' => 11
),
'uuid' => array(
'type' => 'string',
'length' => 40
),
'name' => array(
'type' => 'string',
'length' => 255
)
);
【问题讨论】:
标签: cakephp model cakephp-3.0 information-schema