Laravel 5.1:迁移现有数据库
https://github.com/Xethron/migrations-generator
我使用php artisan migrate:generate
命令在上述扩展的帮助下将我的数据库结构迁移到Laravel。 但是有一个小问题,我的主键没有被命名为id,我宁愿使用一个不同的约定,为每个人添加一个前缀,比如user_id,product_id,photo_id等等。当然,所有这些都是自动递增的。
这是我的migrations文件夹中的当前create_users_table.php文件。 我定义了user_id来覆盖默认的id选项,那是否正确使用?
<?php
use IlluminateDatabaseMigrationsMigration;
use IlluminateDatabaseSchemaBlueprint;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->primary('user_id');
$table->integer('user_id', true);
$table->string('name', 500);
$table->string('email', 500);
$table->string('password', 500);
}
);
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('users');
}
}
我读到我需要添加如下所示的内容,但我不确定在哪里定义protected $primaryKey
因为我的类扩展了Migration而不是Eloquent。
class CreateUsersTable extends Eloquent {
protected $primaryKey = 'user_id';
}
当我转到/ auth / login页面时出现以下错误,我认为这是由user_id用法而非id造成的。 我该如何解决它?
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'users.id' in 'where clause' (SQL: select * from `users` where `users`.`id` = 5 limit 1)
您需要在User
模型中指定非默认主键:
namespace App;
use IlluminateDatabaseEloquentModel;
class User extends Model {
protected $primaryKey = 'user_id';
您需要为所有不使用id
作为主键的模型执行此操作。