string('ip')->nullable()->comment('ip地址')->after('desc'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('video', function (Blueprint $table) { $table->dropColumn('ip'); }); } };