We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 2 |
1 | <?php |
||
12 | public function up(): void |
||
13 | { |
||
14 | Schema::create('uploaders', function (Blueprint $table) { |
||
15 | $table->increments('id'); |
||
16 | $table->string('upload')->nullable(); |
||
17 | $table->json('upload_multiple')->nullable(); |
||
18 | $table->json('dropzone')->nullable(); |
||
19 | $table->json('easymde')->nullable(); |
||
20 | $table->json('repeatable')->nullable(); |
||
21 | }); |
||
32 |