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