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