Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
34 | public function up() |
||
35 | { |
||
36 | $this->createSchema(function(Blueprint $table) { |
||
37 | $table->increments('id'); |
||
38 | |||
39 | $table->string('domain')->nullable(); |
||
40 | $table->string('key'); |
||
41 | $table->text('value'); |
||
42 | $table->enum('type', ['integer', 'real', 'float', 'double', 'string', 'boolean', 'object', 'array']); |
||
43 | |||
44 | $table->timestamps(); |
||
45 | }); |
||
46 | } |
||
47 | } |
||
48 |