increments('id'); $table->string('phone', 50); $table->text('message'); $table->string('code')->nullable(); $table->boolean('confirmed'); $table->string('ip', 50); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { // Schema::dropIfExists('messages'); } }