Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vearutop authored May 24, 2024
1 parent 1f7d6a9 commit f91a122
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Struct-based database access layer for Go

[![Build Status](https://github.com/bool64/sqluct/workflows/test/badge.svg)](https://github.com/bool64/sqluct/actions?query=branch%3Amaster+workflow%3Atest)
[![test-unit](https://github.com/bool64/sqluct/actions/workflows/test-unit.yml/badge.svg)](https://github.com/bool64/sqluct/actions/workflows/test-unit.yml)
[![Coverage Status](https://codecov.io/gh/bool64/sqluct/branch/master/graph/badge.svg)](https://codecov.io/gh/bool64/sqluct)
[![GoDevDoc](https://img.shields.io/badge/dev-doc-00ADD8?logo=go)](https://pkg.go.dev/github.com/bool64/sqluct)
[![Time Tracker](https://wakatime.com/badge/github/bool64/sqluct.svg)](https://wakatime.com/badge/github/bool64/sqluct)
Expand Down Expand Up @@ -309,4 +309,4 @@ query, args, err = s.SelectStmt("products", Product{}).Where(s.WhereEq(Product{
fmt.Println(query, args, err)
// This query adds skips both price and name from where condition because SkipZeroValues option is applied.
// SELECT id, name, price FROM products WHERE id = $1 [123] <nil>
```
```

0 comments on commit f91a122

Please sign in to comment.