increments('id'); $table->integer('company_id'); $table->string('key'); $table->text('value')->nullable(); $table->index('company_id'); $table->unique(['company_id', 'key']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('settings'); } }