tinyInteger("status")->default(1)->comment("视频状态 0:下架 1:上架")->after('desc'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('video', function (Blueprint $table) { $table->dropColumn('status'); }); } };