diff --git a/review b/review new file mode 100644 index 0000000..d2551b3 --- /dev/null +++ b/review @@ -0,0 +1,32 @@ +increments('id'); + $table->unsignedBigInteger('booking_id'); + $table->longText('comments')->nullable(); + $table->integer('star_rating'); + $table->enum('status', ['active', 'deactive']); + $table->timestamps(); + }); + } + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('review_ratings'); + } +}