text('desc')->nullable()->comment('描述')->change(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('video', function (Blueprint $table) { $table->string('desc')->nullable()->comment('描述'); }); } };