string('formId')->nullable(); $table->string('formId_create_time')->nullable(); }); } } } /** * Reverse the migrations. * * @return void */ public function down() { if (Schema::hasTable('yz_member_mini_app')) { if (Schema::hasColumn('yz_member_mini_app', 'formId')) { Schema::table('yz_member_mini_app', function (Blueprint $table) { $table->dropColumn('formId_create_time'); $table->dropColumn('formId'); }); } } // } }