我有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
以外的所有字段的表?
答案 0 :(得分:2)
好像你有一个错字:@Coulmn(type="string",nullable=false)
应该是@Column(type="string",nullable=false)