Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('h5p_counters', function (Blueprint $table) { |
||
17 | $table->string('type', 63); |
||
18 | $table->string('library_name', 127); |
||
19 | $table->string('library_version', 31); |
||
20 | $table->bigInteger('num')->unsigned(); |
||
21 | $table->primary(['type', 'library_name', 'library_version'], 'fk_primary'); |
||
22 | }); |
||
35 |