id(); $table->integer('film'); $table->integer('user'); $table->text('body'); $table->tinyInteger('evaluation')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('comments'); } };