Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('settings', function (Blueprint $table) { |
||
17 | $table->index(['group', 'key']); |
||
18 | $table->unique(['group', 'key']); |
||
19 | |||
20 | $table->id(); |
||
21 | $table->string('group')->default('default'); |
||
22 | $table->string('key'); |
||
23 | $table->string('type'); |
||
24 | $table->string('title'); |
||
25 | $table->text('value')->nullable(); |
||
26 | $table->text('options')->nullable(); |
||
27 | $table->timestamps(); |
||
28 | }); |
||
29 | } |
||
30 | |||
41 |