Doctrine 1.2不是在Zend Framework中从模型创建表

时间:2011-08-21 17:51:19

标签: zend-framework doctrine-1.2

我正在尝试使用以下方法从模型创建表:

Doctrine::createTablesFromModels(APPLICATION_PATH . '/models');

与Yaml文件生成模型不同,Yaml文件运行得很好,但这根本不起作用。没有错误,没有警告,没有。表格未创建。如果我运行下面的代码,它也可以正常工作:

Doctrine::dropDatabases();

因此数据库连接确实有效,权限设置正确。我用十种不同的方式搜索了它,但没有得到任何有用的答案,所以现在我在这里问。

这是我的一个基类:

<?php

/**
 * BaseUser
 * 
 * This class has been auto-generated by the Doctrine ORM Framework
 * 
 * @property string $email
 * @property string $password
 * @property string $firstName
 * @property string $lastName
 * @property string $profileText
 * @property integer $role_id
 * @property Role $Role
 * @property Doctrine_Collection $UserDetail
 * @property Doctrine_Collection $CalendarItem
 * @property Doctrine_Collection $NewsItem
 * @property Doctrine_Collection $Link
 * @property Doctrine_Collection $TwitterUser
 * @property Doctrine_Collection $Tweet
 * 
 * @package    ##PACKAGE##
 * @subpackage ##SUBPACKAGE##
 * @author     ##NAME## <##EMAIL##>
 * @version    SVN: $Id: Builder.php 6820 2009-11-30 17:27:49Z jwage $
 */
abstract class BaseUser extends Doctrine_Record
{
    public function setTableDefinition()
    {
        $this->setTableName('user');
        $this->hasColumn('email', 'string', 255, array(
             'type' => 'string',
             'length' => '255',
             ));
        $this->hasColumn('password', 'string', 255, array(
             'type' => 'string',
             'length' => '255',
             ));
        $this->hasColumn('firstName', 'string', 255, array(
             'type' => 'string',
             'length' => '255',
             ));
        $this->hasColumn('lastName', 'string', 255, array(
             'type' => 'string',
             'length' => '255',
             ));
        $this->hasColumn('profileText', 'string', null, array(
             'type' => 'string',
             'length' => '',
             ));
        $this->hasColumn('role_id', 'integer', 8, array(
             'type' => 'integer',
             'length' => 8,
             ));

        $this->option('collate', 'utf8_unicode_ci');
        $this->option('charset', 'utf8');
    }

    public function setUp()
    {
        parent::setUp();
        $this->hasOne('Role', array(
             'local' => 'role_id',
             'foreign' => 'id'));

        $this->hasMany('UserDetail', array(
             'local' => 'id',
             'foreign' => 'user_id'));

        $this->hasMany('CalendarItem', array(
             'local' => 'id',
             'foreign' => 'user_id'));

        $this->hasMany('NewsItem', array(
             'local' => 'id',
             'foreign' => 'user_id'));

        $this->hasMany('Link', array(
             'local' => 'id',
             'foreign' => 'user_id'));

        $this->hasMany('TwitterUser', array(
             'local' => 'id',
             'foreign' => 'user_id'));

        $this->hasMany('Tweet', array(
             'local' => 'id',
             'foreign' => 'user_id'));

        $timestampable0 = new Doctrine_Template_Timestampable();
        $softdelete0 = new softDelete();
        $this->actAs($timestampable0);
        $this->actAs($softdelete0);
    }
}

2 个答案:

答案 0 :(得分:1)

问题已经解决了。我正在使用softdelete功能,我忘了设置:

$manager->setAttribute(Doctrine_Core::ATTR_USE_DQL_CALLBACKS, true);

这对于softdelete工作是必要的。我还发现,在我生成的模型中,它使用了错误的代码进行软删除:

$softdelete0 = new softDelete();

而不是:

$softdelete0 = new Doctrine_Template_SoftDelete();

答案 1 :(得分:-1)

在此之前我遇到过这个问题,经过3天的搜索,我找不到解决方法 在它结束时,我已经开始使用symfony cli工具生成sql并从yaml文件创建db