| Conditions | 1 |
| Paths | 1 |
| Total Lines | 21 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 37 | public function down() |
||
| 38 | { |
||
| 39 | DB::transaction(function () { |
||
| 40 | Schema::table('cosmicradiotv_podcast_shows', function (Blueprint $table) { |
||
| 41 | $table->dropColumn([ |
||
| 42 | 'feed_language', |
||
| 43 | 'feed_copyright', |
||
| 44 | 'feed_author', |
||
| 45 | 'itunes_category', |
||
| 46 | 'itunes_explicit', |
||
| 47 | 'itunes_owner_name', |
||
| 48 | 'itunes_owner_email', |
||
| 49 | ]); |
||
| 50 | }); |
||
| 51 | Schema::table('cosmicradiotv_podcast_episodes', function (Blueprint $table) { |
||
| 52 | $table->dropColumn([ |
||
| 53 | 'itunes_explicit', |
||
| 54 | ]); |
||
| 55 | }); |
||
| 56 | }); |
||
| 57 | } |
||
| 58 | |||
| 59 | } |