created base database schema
This commit is contained in:
parent
ee07974060
commit
dc58253ad9
3 changed files with 472 additions and 11 deletions
17
go.mod
17
go.mod
|
@ -2,16 +2,25 @@ module vegan-barcode/backend
|
|||
|
||||
go 1.24.1
|
||||
|
||||
require github.com/jackc/pgx v3.6.2+incompatible
|
||||
|
||||
require (
|
||||
github.com/davecgh/go-spew v1.1.1 // indirect
|
||||
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
||||
github.com/jackc/pgconn v1.14.1 // indirect
|
||||
github.com/jackc/pgio v1.0.0 // indirect
|
||||
github.com/jackc/pgpassfile v1.0.0 // indirect
|
||||
github.com/jackc/pgproto3/v2 v2.3.2 // indirect
|
||||
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
||||
github.com/jackc/pgtype v1.14.0 // indirect
|
||||
github.com/jackc/pgx/v4 v4.18.1 // indirect
|
||||
github.com/jackc/puddle v1.3.0 // indirect
|
||||
github.com/pmezard/go-difflib v1.0.0 // indirect
|
||||
github.com/stretchr/testify v1.8.4 // indirect
|
||||
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||||
)
|
||||
|
||||
require (
|
||||
github.com/jackc/pgx/v5 v5.7.4
|
||||
github.com/pkg/errors v0.9.1 // indirect
|
||||
github.com/vingarcia/ksql v1.12.3
|
||||
github.com/vingarcia/ksql/adapters/kpgx v1.12.3
|
||||
golang.org/x/crypto v0.36.0 // indirect
|
||||
golang.org/x/text v0.23.0 // indirect
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue