increments('id'); $table->string('name'); $table->string('description')->nullable(); $table->string('unit')->nullable(); $table->unsignedBigInteger('price'); $table->integer('company_id')->unsigned()->nullable(); $table->foreign('company_id')->references('id')->on('companies')->onDelete('cascade'); $table->integer('unit_id')->unsigned()->nullable(); $table->foreign('unit_id')->references('id')->on('units')->onDelete('cascade'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('items'); } }