id(); $table->string('name')->nullable(); $table->string("appid")->nullable()->comment("应用ID"); $table->string("public_key",1024)->nullable()->comment("应用公钥"); $table->string("alipay_key",1024)->nullable()->comment("支付宝密钥"); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('alipay_account'); } }