id(); $table->char('uuid', 36); $table->string('email'); $table->text('body'); $table->dateTime('added'); $table->smallInteger('answered')->default(0); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('complains'); } };