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