Skip to content

Commit

Permalink
Fixes wrong column reference (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
timacdonald authored Jun 27, 2024
1 parent 8a54ed9 commit 3fa7b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Drivers/DatabaseDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ public function set($feature, $scope, $value): void
'value' => json_encode($value, flags: JSON_THROW_ON_ERROR),
static::CREATED_AT => $now = Carbon::now(),
static::UPDATED_AT => $now,
], uniqueBy: ['name', 'scope'], update: ['value', static::CREATED_AT]);
], uniqueBy: ['name', 'scope'], update: ['value', static::UPDATED_AT]);
}

/**
Expand Down

0 comments on commit 3fa7b72

Please sign in to comment.