text('qr_code')->nullable()->comment('活动二维码')->after('describe'); $table->text('qr_code_url')->nullable()->comment('活动详情地址')->after('qr_code'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('activity', function (Blueprint $table) { $table->dropColumn('qr_code'); $table->dropColumn('qr_code_url'); }); } };