| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | Schema::table('micro_references', function (Blueprint $table) { |
||
| 17 | $table->dropForeign(['experience_level_id']); |
||
| 18 | $table->dropIndex(['experience_level_id']); |
||
| 19 | |||
| 20 | $table->dropColumn('experience_level_id'); |
||
| 21 | $table->dropColumn('observed_from_date'); |
||
| 22 | $table->dropColumn('observed_until_date'); |
||
| 23 | $table->renameColumn('story', 'description'); |
||
| 24 | }); |
||
| 46 |