Total Complexity | 2 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | return new class extends Migration |
||
8 | { |
||
9 | /** |
||
10 | * Run the migrations. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('notes', function (Blueprint $table) { |
||
17 | $table->increments('id'); |
||
18 | $table->string('name')->nullable(); |
||
19 | $table->text('description')->nullable(); |
||
20 | $table->dateTime('date')->nullable(); |
||
21 | $table->integer('type_id')->nullable(); |
||
22 | $table->integer('is_active')->nullable(); |
||
23 | $table->string('group')->nullable(); |
||
24 | $table->string('gid')->nullable(); |
||
25 | $table->longText('note')->nullable(); |
||
26 | $table->string('rin')->nullable(); |
||
27 | $table->timestamps(); |
||
28 | }); |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Reverse the migrations. |
||
33 | * |
||
34 | * @return void |
||
35 | */ |
||
36 | public function down() |
||
39 | } |
||
40 | }; |
||
41 |
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