| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class CreateEpormasCounterTable extends Migration { |
||
| 8 | |||
| 9 | public function up() |
||
| 10 | { |
||
| 11 | Schema::create('epormas_counter', function(Blueprint $table) { |
||
| 12 | $table->increments('id'); |
||
| 13 | $table->timestamps(); |
||
| 14 | $table->softDeletes(); |
||
| 15 | $table->integer('tahun')->unsigned()->index(); |
||
| 16 | $table->string('bulan', 2)->index(); |
||
| 17 | $table->datetime('tanggal')->index(); |
||
| 18 | $table->integer('count')->unsigned()->index(); |
||
| 19 | $table->string('via')->index(); |
||
| 20 | $table->integer('user_id')->unsigned()->index(); |
||
| 21 | $table->integer('category_id')->unsigned()->index(); |
||
| 22 | $table->integer('city_id')->unsigned()->index(); |
||
| 23 | }); |
||
| 24 | } |
||
| 25 | |||
| 26 | public function down() |
||
| 29 | } |
||
| 30 | } |
||
| 31 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths