id(); $table->unsignedBigInteger('user_id')->nullable(); $table->unsignedBigInteger('product_id')->nullable(); $table->tinyInteger('rate')->default(0); $table->text('review')->nullable(); $table->enum('status',['active','inactive'])->default('active'); $table->foreign('user_id')->references('id')->on('users')->onDelete('SET NULL'); $table->foreign('product_id')->references('id')->on('products')->onDelete('SET NULL'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('product_reviews'); } }