Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | public function up() |
||
17 | { |
||
18 | DB::transaction(function () { |
||
19 | Schema::table('cosmicradiotv_podcast_shows', function (Blueprint $table) { |
||
20 | $table->string('feed_language')->default('en-us')->after('description'); |
||
21 | $table->string('feed_copyright')->nullable()->after('feed_language'); |
||
22 | $table->string('feed_author')->nullable()->after('feed_copyright'); |
||
23 | $table->text('itunes_category')->nullable()->after('feed_author'); |
||
24 | $table->boolean('itunes_explicit')->nullable()->after('itunes_category'); |
||
25 | $table->string('itunes_owner_name')->nullable()->after('itunes_explicit'); |
||
26 | $table->string('itunes_owner_email')->nullable()->after('itunes_owner_name'); |
||
27 | }); |
||
28 | Schema::table('cosmicradiotv_podcast_episodes', function (Blueprint $table) { |
||
29 | $table->boolean('itunes_explicit')->nullable()->after('published'); |
||
30 | }); |
||
31 | }); |
||
32 | } |
||
33 | |||
59 | } |