id(); $table->integer('rate')->nullable(); $table->text('comment')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('rating'); } };