increments('id'); $table->integer('user_id')->unsigned(); $table->foreign('user_id') ->references('id')->on('users') ->onDelete('cascade'); //$table->unsignedInteger('user_id'); // $table->foreign('user_id')->references('id')->on('users'); $table->integer('company_id')->unsigned(); $table->foreign('company_id') ->references('id')->on('companies') ->onDelete('cascade'); $table->Integer('status')->default('0'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('contacts'); } }