/**
  * Rollback
  */
 public function down()
 {
     DB::transaction(function () {
         // Clean up all current bindings
         \October\Rain\Database\Models\DeferredBinding::cleanUp(0);
         Schema::table('cosmicradiotv_podcast_releases', function (Blueprint $table) {
             $table->unsignedInteger('episode_id')->change();
         });
     });
 }