dbfdg bigIncrements('id'); $table->string('name'); $table->string('value'); $table->integer('created_by'); $table->timestamps(); $table->unique( [ 'name', 'created_by', ] ); } ); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('company_payment_settings'); } }