| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 31 | public function down() |
||
| 32 | { |
||
| 33 | DB::transaction(function () { |
||
| 34 | // Clean up all current bindings |
||
| 35 | \October\Rain\Database\Models\DeferredBinding::cleanUp(0); |
||
| 36 | |||
| 37 | Schema::table('cosmicradiotv_podcast_releases', function (Blueprint $table) { |
||
| 38 | $table->unsignedInteger('episode_id')->change(); |
||
| 39 | }); |
||
| 40 | }); |
||
| 41 | |||
| 42 | } |
||
| 43 | } |