increments('id'); $table->string('fied', 255)->nullable(); $table->string('field_key', 255)->nullable(); $table->string('value', 255)->nullable(); $table->tinyInteger('status')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('settings'); } }