Doctrine 2 orm:schema-tool:create

时间:2011-05-09 12:39:52

标签: doctrine

我有model如下

/**
 * @Id
 * @Column(type="integer",nullable=false)
 * @generatedValue(strategy="AUTO")
 */
private $id;
/**
 * @Column(type="string",nullable=false,unique=true)
 */
private $email;
/**
 * @Column(type="string",length=64,nullable=false)
 */
private $password;
/**
 * @Column(type="string",nullable=false)
 */
private $first_name;
/**
 * @Coulmn(type="string",nullable=false)
 */
private $last_name;

当我跑步时

orm:schema-tool:create

它在数据库上生成包含除Last_name以外的所有字段的表?

1 个答案:

答案 0 :(得分:2)

好像你有一个错字:@Coulmn(type="string",nullable=false)应该是@Column(type="string",nullable=false)