| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 13 | public function up() |
||
| 14 | { |
||
| 15 | Schema::create('setting__settings', function (Blueprint $table) { |
||
| 16 | $table->engine = 'InnoDB'; |
||
| 17 | $table->increments('id'); |
||
| 18 | $table->string('name'); |
||
| 19 | $table->string('plainValue')->nullable(); |
||
| 20 | $table->boolean('isTranslatable'); |
||
| 21 | $table->timestamps(); |
||
| 22 | }); |
||
| 23 | } |
||
| 24 | |||
| 35 |