integer('duration')->nullable()->default(null); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('anime', function (Blueprint $table) { $table->dropColumn('duration'); }); } }