Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('detail_values', function (Blueprint $table) { |
||
17 | $table->id(); |
||
18 | $table->unsignedBigInteger('detail_id'); |
||
19 | $table->string('value'); |
||
20 | $table->timestamps(); |
||
21 | |||
22 | //fk |
||
23 | $table->foreign('detail_id')->references('id')->on('details'); |
||
24 | }); |
||
37 |