2

当我编写 CakePHP 应用程序时,我的一个常见任务是在运行 bake 以生成一些脚手架之前键入一个 SQL 文件并将其写入数据库。这是我对 CakePHP 的极少数抱怨之一——这样做将我与 MySQL 联系在一起,我想知道是否有更好的方法通过代码来完成。例如,在某些框架中,我可以定义模型使用的列以及数据类型等,然后通过管理界面运行命令以根据代码中呈现的内容“构建”数据库。它将在框架后面的任何数据库上执行此操作。

CakePHP 2.x 有没有办法可以做这样的事情?我想在我的模型代码中写出数据库模式并运行像 bake 这样的命令来自动生成我需要的表和列。在深入研究食谱文档后,_schema 属性似乎做了我想做的事情:

class Post{
  public $_schema = array(
    'title' => array('type'=>'text'),
    'description' => array('type'=>'text'),
    'author' => array('type'=>'text')
  );
}

但是没有例子可以解释我会从那里做什么。_schema 属性是否有不同的用途?任何帮助,将不胜感激!

4

1 回答 1

9

不是来自您的 $_schema 数组本身。schema.php但是在 /APP/Config/Schema 中创建和使用模式文件。

然后,您可以运行烘焙命令“cake schema create”,然后该命令将“根据模式文件删除并创建表”。

我可能看起来像这样:

class YourSchema extends CakeSchema {

    public $addresses = array(
        'id' => array('type' => 'integer', 'null' => false, 'default' => NULL, 'length' => 10, 'key' => 'primary'),
        'contact_id' => array('type' => 'integer', 'null' => false, 'default' => '0', 'length' => 10),
        'type' => array('type' => 'integer', 'null' => false, 'default' => '0', 'length' => 2),
        'status' => array('type' => 'integer', 'null' => false, 'default' => '0', 'length' => 2),
        'email' => array('type' => 'string', 'null' => false, 'default' => NULL, 'length' => 50, 'collate' => 'utf8_unicode_ci', 'comment' => 'redundant', 'charset' => 'utf8'),
        'created' => array('type' => 'datetime', 'null' => false, 'default' => NULL),
        'modified' => array('type' => 'datetime', 'null' => false, 'default' => NULL),
        'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1)),
        'tableParameters' => array('charset' => 'utf8', 'collate' => 'utf8_unicode_ci', 'engine' => 'MyISAM')
    )

    // more tables...
}
于 2012-05-01T10:47:46.233 回答