increments('id'); $table->string('name'); $table->text('request'); $table->ipAddress('ip_address'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('requests'); } }