| Total Complexity | 2 | 
| Total Lines | 14 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 7 | class CreateSettingsTable extends Migration  | 
            ||
| 8 | { | 
            ||
| 9 | public function up()  | 
            ||
| 10 |     { | 
            ||
| 11 |         Schema::create('settings', function (Blueprint $table) { | 
            ||
| 12 |             $table->increments('id'); | 
            ||
| 13 |             $table->string('key')->index(); | 
            ||
| 14 |             $table->text('value'); | 
            ||
| 15 | });  | 
            ||
| 16 | }  | 
            ||
| 17 | |||
| 18 | public function down()  | 
            ||
| 19 |     { | 
            ||
| 20 |         Schema::dropIfExists('settings'); | 
            ||
| 21 | }  | 
            ||
| 23 |