Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
33 | public function up(): void |
||
34 | { |
||
35 | $this->create($this->config->database['table'], static function (Structure $table) { |
||
36 | 2 | $table->id(); |
|
37 | 2 | $table->string('file'); |
|
38 | 2 | $table->string('key'); |
|
39 | 2 | $table->text('value')->nullable(); |
|
40 | 2 | $table->string('type', 31)->default('string'); |
|
41 | 2 | $table->string('context')->nullable(); |
|
42 | 2 | $table->timestamps(); |
|
43 | |||
44 | 2 | return $table; |
|
45 | 2 | }); |
|
56 |