以下是我的迁移
users表与customer表有关系
在用户中:
$table->integer('customer_id')->unsigned();
$table->foreign('customer_id')->references('id')->on('customers');
当我致电php artisan migrate:refresh --seed
时,工匠给了我以下错误:
[Illuminate\Database\QueryException]
SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint (SQL
: alter table `users` add constraint `users_customer_id_foreign` foreign ke
y (`customer_id`) references `customers` (`id`))
[PDOException]
SQLSTATE[HY000]: General error: 1215 Cannot add foreign key constraint
因为customers表不存在......(显而易见)
有没有办法解决这个问题?我知道更改文件的日期会解决这个问题,但应该有一个更好的方法
答案 0 :(得分:2)
在添加外键之前,您必须创建要引用的表。解决方案是从用户表迁移中删除外键约束,并创建一个添加外键约束的新迁移。
答案 1 :(得分:0)
尝试单独制作。
public function up()
{
Schema::create('users', function(Blueprint $table) {
$table->increments('id');
$table->integer('costumer_id')->unsigned();
$table->string('email')->unique();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
Schema::table('users', function($table) {
$table->foreign('costumer_id')->references('id')->on('costumers');
});
}
你可以尝试的另一件事(因为laravel 5.3):
unsignedInteger('column_name') instead of ('column_name')-unsigned()
答案 2 :(得分:0)
如果您将一个字段设置为"未签名"而另一个则没有。一旦你将两列都设置为无符号就行了。