Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('h5p_libraries_libraries', function (Blueprint $table) { |
||
17 | $table->bigInteger('library_id')->unsigned(); |
||
18 | $table->bigInteger('required_library_id')->unsigned(); |
||
19 | $table->string('dependency_type', 31); |
||
20 | $table->primary(['library_id', 'required_library_id'], 'fk_primary'); |
||
21 | }); |
||
34 |