id(); $table->string("belongs_type")->nullable(); $table->integer("belongs_id")->nullable(); $table->string("mobile")->nullable(); $table->string("vars")->nullable(); $table->string("template_id")->nullable(); $table->string("ip")->nullable(); $table->string("status")->nullable(); $table->string("result_code")->nullable(); $table->string("result_msg")->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('sms'); } }