id(); $table->string('name')->nullable(); $table->string('mchid')->nullable()->unique(); $table->string('key')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('wechatpay_account'); } }