Skip to content

Commit

Permalink
fix: force updated_at date to change
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew committed Jan 13, 2025
1 parent f98ec28 commit 0cb0d34
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class UniqueConnectionStore implements IUniqueConnectionStore {
}

async insert(uniqueConnections: UniqueConnections): Promise<void> {
await this.db<UniqueConnections & { updated_at: null }>(
await this.db<UniqueConnections & { updated_at: 'DEFAULT' }>(
'unique_connections',
)
.insert({
Expand Down

0 comments on commit 0cb0d34

Please sign in to comment.