increments('id'); $table->string('key')->unique(); $table->string('name'); $table->string('description')->nullable(); $table->text('value')->nullable(); $table->text('field'); $table->tinyInteger('active'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('settings'); } }