| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | public function up() |
||
| 12 | { |
||
| 13 | Schema::create('pull_requests_has_commits', function (Blueprint $table) { |
||
| 14 | $table->increments('id'); |
||
| 15 | $table->integer('pull_request_id')->unsigned()->nullable()->index('fk_pull_requests_has_commits_pull_request_id_idx'); |
||
| 16 | $table->integer('commit_id')->unsigned()->nullable()->index('fk_pull_requests_has_commits_commit_id_idx'); |
||
| 17 | $table->timestamps(); |
||
| 18 | $table->softDeletes(); |
||
| 19 | }); |
||
| 20 | } |
||
| 21 | |||
| 30 |