Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
16 | public function up() |
||
17 | { |
||
18 | DB::transaction(function () { |
||
19 | // Clean up all current bindings |
||
20 | \October\Rain\Database\Models\DeferredBinding::cleanUp(0); |
||
21 | |||
22 | Schema::table('cosmicradiotv_podcast_releases', function (Blueprint $table) { |
||
23 | $table->unsignedInteger('episode_id')->nullable()->change(); |
||
24 | }); |
||
25 | }); |
||
26 | } |
||
27 | |||
43 | } |