我是laravel的新手。所以这将是一个非常基本的问题。我的问题是迁移中的列类型应该创建出生日期列。例如,我创建了献血的迁移文件,其中列是类似的,
$table->increments('id');
$table->unsignedInteger('donner_id');
$table->foreign('donner_id')->references->('id')->on('users')->onDelete('cascade')->onUpdate('cascade');
$table->string('name');
$table->string('email')->unique();
$table->string('blood_group');
$table->string('phone_number')->unique();
$table->string('location');
$table-> ------('date_of_birth');
$table->timestamps();
你可以看到laravel4迁移使用' string'类型而不是' varchar' .so laravel 4 中出生日期列的类型应该是什么?