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