id(); $table->string('section'); $table->string('type'); $table->string('title'); $table->boolean('active')->default(true); $table->string('key')->unique(); $table->text('value')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('settings'); } };