Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | 222 | public function fieldTableFields(Blueprint $table) |
|
9 | { |
||
10 | 222 | $table->increments('id'); |
|
11 | 222 | $table->string('name'); |
|
12 | 222 | $table->integer('weight'); |
|
13 | |||
14 | 222 | $table->timestamps(); |
|
15 | |||
16 | 222 | $table->unsignedInteger('revision_id'); |
|
17 | 222 | $table->foreign('revision_id')->references('id')->on('revisions'); |
|
18 | 222 | } |
|
19 | |||
64 |