id(); $table->string('name', 100); $table->string('phone', 30); $table->text('message'); $table->boolean('viewed')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('feedback'); } }