我扩展了默认迁移,以便为我的用户表包含一些额外的表字段。
我希望将created_at
和updated_at
字段设为timestamps
作为值。
这是我的代码
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUsersTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function(Blueprint $table)
{
$table->bigIncrements('id');
$table->bigInteger('group_id');
$table->string('fname',255);
$table->string('lname',255);
$table->string('email',255)->unique();
$table->string('password', 60);
$table->boolean('active');
$table->string('gravtar',255)->nullable();
$table->rememberToken();
$table->timestamps('created_at');
$table->timestamps('updated_at');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('users');
}
}
障碍是使用两个时间戳列不迁移表并抛出此异常
[PDOException]
SQLSTATE[42S21]: Column already exists: 1060 Duplicate column name 'created_at'
请参阅,我只有一个名为created_at
的列,所以此异常没有意义。
但是,当我删除其中一个时间戳字段时,表将被迁移。
我不知道造成这种情况的原因是什么?
答案 0 :(得分:5)
只需在$table->timestamp('col_name');
timestamp
而不使用s
答案 1 :(得分:3)
timestamps()方法添加created_at和updated_at列。此方法也不接受任何参数。
http://laravel.com/api/5.0/Illuminate/Database/Schema/Blueprint.html#method_timestamps http://laravel.com/docs/5.0/schema