From 2cf7d9f41f4ba4a994fcc00d657239a09df0b8fb Mon Sep 17 00:00:00 2001 From: Eric Klatzer Date: Fri, 3 Jan 2025 17:30:09 +0000 Subject: [PATCH] Bump sqlboiler to v4.18.0 --- .changes/unreleased/Changed-20250103-172558.yaml | 3 +++ go.mod | 6 +++--- go.sum | 14 +++++++------- internal/models/access_tokens.go | 4 ++-- internal/models/access_tokens_test.go | 2 +- internal/models/app_user_profiles.go | 4 ++-- internal/models/app_user_profiles_test.go | 2 +- internal/models/boil_main_test.go | 2 +- internal/models/boil_queries.go | 2 +- internal/models/boil_queries_test.go | 2 +- internal/models/boil_relationship_test.go | 2 +- internal/models/boil_suites_test.go | 2 +- internal/models/boil_table_names.go | 2 +- internal/models/boil_types.go | 2 +- internal/models/boil_view_names.go | 2 +- internal/models/password_reset_tokens.go | 4 ++-- internal/models/password_reset_tokens_test.go | 2 +- internal/models/psql_main_test.go | 2 +- internal/models/psql_suites_test.go | 2 +- internal/models/psql_upsert.go | 2 +- internal/models/push_tokens.go | 4 ++-- internal/models/push_tokens_test.go | 2 +- internal/models/refresh_tokens.go | 4 ++-- internal/models/refresh_tokens_test.go | 2 +- internal/models/users.go | 4 ++-- internal/models/users_test.go | 2 +- 26 files changed, 42 insertions(+), 39 deletions(-) create mode 100644 .changes/unreleased/Changed-20250103-172558.yaml diff --git a/.changes/unreleased/Changed-20250103-172558.yaml b/.changes/unreleased/Changed-20250103-172558.yaml new file mode 100644 index 00000000..8f07e3ab --- /dev/null +++ b/.changes/unreleased/Changed-20250103-172558.yaml @@ -0,0 +1,3 @@ +kind: Changed +body: Bump [github.com/volatiletech/sqlboiler/v4 from v4.17.1 to v4.18.0](https://github.com/volatiletech/sqlboiler/releases/tag/v4.18.0) +time: 2025-01-03T17:25:58.397383055Z diff --git a/go.mod b/go.mod index f5e3ad95..34d400dd 100644 --- a/go.mod +++ b/go.mod @@ -29,7 +29,7 @@ require ( github.com/subosito/gotenv v1.6.0 github.com/volatiletech/null/v8 v8.1.2 github.com/volatiletech/randomize v0.0.1 - github.com/volatiletech/sqlboiler/v4 v4.17.1 + github.com/volatiletech/sqlboiler/v4 v4.18.0 github.com/volatiletech/strmangle v0.0.8 golang.org/x/crypto v0.31.0 golang.org/x/mod v0.22.0 @@ -116,13 +116,13 @@ require ( go.opentelemetry.io/otel/metric v1.33.0 // indirect go.opentelemetry.io/otel/trace v1.33.0 // indirect go.uber.org/multierr v1.11.0 // indirect - golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67 // indirect + golang.org/x/exp v0.0.0-20250103163809-dd03c70a0a45 // indirect golang.org/x/net v0.33.0 // indirect golang.org/x/oauth2 v0.24.0 // indirect golang.org/x/sync v0.10.0 // indirect golang.org/x/time v0.8.0 // indirect golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20241223144023-3abc09e42ca8 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20250102185135-69823020774d // indirect google.golang.org/grpc v1.69.2 // indirect google.golang.org/protobuf v1.36.1 // indirect gopkg.in/ini.v1 v1.67.0 // indirect diff --git a/go.sum b/go.sum index 9e73bd5a..69983e51 100644 --- a/go.sum +++ b/go.sum @@ -741,10 +741,10 @@ github.com/volatiletech/null/v8 v8.1.2 h1:kiTiX1PpwvuugKwfvUNX/SU/5A2KGZMXfGD0DU github.com/volatiletech/null/v8 v8.1.2/go.mod h1:98DbwNoKEpRrYtGjWFctievIfm4n4MxG0A6EBUcoS5g= github.com/volatiletech/randomize v0.0.1 h1:eE5yajattWqTB2/eN8df4dw+8jwAzBtbdo5sbWC4nMk= github.com/volatiletech/randomize v0.0.1/go.mod h1:GN3U0QYqfZ9FOJ67bzax1cqZ5q2xuj2mXrXBjWaRTlY= -github.com/volatiletech/sqlboiler/v4 v4.17.1 h1:3AggaTfY9SLBp7m3H0X2qMXN4OZzGGtCm20BfQ7O88g= -github.com/volatiletech/sqlboiler/v4 v4.17.1/go.mod h1:XgPlHwMabot/eOqvsRnzc4Bw84BJNzizr+ac+T9LTic= +github.com/volatiletech/sqlboiler/v4 v4.18.0 h1:ISz4w94NmJrGAIO3FnYqzD76yYL54Ll61PIfM/c5cdM= +github.com/volatiletech/sqlboiler/v4 v4.18.0/go.mod h1:e4TAZHRyiLwKrHzKS9OuOfc9SJy/AprEMbn+ZrAohO8= github.com/volatiletech/strmangle v0.0.1/go.mod h1:F6RA6IkB5vq0yTG4GQ0UsbbRcl3ni9P76i+JrTBKFFg= -github.com/volatiletech/strmangle v0.0.7-0.20240503230658-86517898275a/go.mod h1:ycDvbDkjDvhC0NUU8w3fWwl5JEMTV56vTKXzR3GeR+0= +github.com/volatiletech/strmangle v0.0.6/go.mod h1:ycDvbDkjDvhC0NUU8w3fWwl5JEMTV56vTKXzR3GeR+0= github.com/volatiletech/strmangle v0.0.8 h1:UZkTDFIjZcL1Lk4BXhGsxcyXxNcWuM5ZwdzZc0sJcWg= github.com/volatiletech/strmangle v0.0.8/go.mod h1:ycDvbDkjDvhC0NUU8w3fWwl5JEMTV56vTKXzR3GeR+0= github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= @@ -827,8 +827,8 @@ golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67 h1:1UoZQm6f0P/ZO0w1Ri+f+ifG/gXhegadRdwBIXEFWDo= -golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67/go.mod h1:qj5a5QZpwLU2NLQudwIN5koi3beDhSAlJwa67PuM98c= +golang.org/x/exp v0.0.0-20250103163809-dd03c70a0a45 h1:tHbTCyM7JD+jm5mShcnp+cl1Q6nJpFZe7kyALJCclHA= +golang.org/x/exp v0.0.0-20250103163809-dd03c70a0a45/go.mod h1:qj5a5QZpwLU2NLQudwIN5koi3beDhSAlJwa67PuM98c= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -1265,8 +1265,8 @@ google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd/go.mod h1:RAyBrSAP google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9 h1:9+tzLLstTlPTRyJTh+ah5wIMsBW5c4tQwGTN3thOW9Y= google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576 h1:CkkIfIt50+lT6NHAVoRYEyAvQGFM7xEwXUUywFvEb3Q= google.golang.org/genproto/googleapis/api v0.0.0-20241209162323-e6fa225c2576/go.mod h1:1R3kvZ1dtP3+4p4d3G8uJ8rFk/fWlScl38vanWACI08= -google.golang.org/genproto/googleapis/rpc v0.0.0-20241223144023-3abc09e42ca8 h1:TqExAhdPaB60Ux47Cn0oLV07rGnxZzIsaRhQaqS666A= -google.golang.org/genproto/googleapis/rpc v0.0.0-20241223144023-3abc09e42ca8/go.mod h1:lcTa1sDdWEIHMWlITnIczmw5w60CF9ffkb8Z+DVmmjA= +google.golang.org/genproto/googleapis/rpc v0.0.0-20250102185135-69823020774d h1:xJJRGY7TJcvIlpSrN3K6LAWgNFUILlO+OMAqtg9aqnw= +google.golang.org/genproto/googleapis/rpc v0.0.0-20250102185135-69823020774d/go.mod h1:3ENsm/5D1mzDyhpzeRi1NR784I0BcofWBoSc5QqqMK4= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= diff --git a/internal/models/access_tokens.go b/internal/models/access_tokens.go index e8a21f68..0bcc7bc0 100644 --- a/internal/models/access_tokens.go +++ b/internal/models/access_tokens.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models @@ -866,7 +866,7 @@ func (o AccessTokenSlice) DeleteAll(ctx context.Context, exec boil.ContextExecut } sql := "DELETE FROM \"access_tokens\" WHERE " + - strmangle.WhereInClause(string(dialect.LQ), string(dialect.RQ), 1, accessTokenPrimaryKeyColumns, len(o)) + strmangle.WhereClauseRepeated(string(dialect.LQ), string(dialect.RQ), 1, accessTokenPrimaryKeyColumns, len(o)) if boil.IsDebug(ctx) { writer := boil.DebugWriterFrom(ctx) diff --git a/internal/models/access_tokens_test.go b/internal/models/access_tokens_test.go index 4ada47f9..ad90f4da 100644 --- a/internal/models/access_tokens_test.go +++ b/internal/models/access_tokens_test.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models diff --git a/internal/models/app_user_profiles.go b/internal/models/app_user_profiles.go index 539c70e1..910f0c86 100644 --- a/internal/models/app_user_profiles.go +++ b/internal/models/app_user_profiles.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models @@ -832,7 +832,7 @@ func (o AppUserProfileSlice) DeleteAll(ctx context.Context, exec boil.ContextExe } sql := "DELETE FROM \"app_user_profiles\" WHERE " + - strmangle.WhereInClause(string(dialect.LQ), string(dialect.RQ), 1, appUserProfilePrimaryKeyColumns, len(o)) + strmangle.WhereClauseRepeated(string(dialect.LQ), string(dialect.RQ), 1, appUserProfilePrimaryKeyColumns, len(o)) if boil.IsDebug(ctx) { writer := boil.DebugWriterFrom(ctx) diff --git a/internal/models/app_user_profiles_test.go b/internal/models/app_user_profiles_test.go index 33d4266b..3eae6622 100644 --- a/internal/models/app_user_profiles_test.go +++ b/internal/models/app_user_profiles_test.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models diff --git a/internal/models/boil_main_test.go b/internal/models/boil_main_test.go index 4c1a9b35..c3aac05a 100644 --- a/internal/models/boil_main_test.go +++ b/internal/models/boil_main_test.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models diff --git a/internal/models/boil_queries.go b/internal/models/boil_queries.go index 4693400c..62a8d370 100644 --- a/internal/models/boil_queries.go +++ b/internal/models/boil_queries.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models diff --git a/internal/models/boil_queries_test.go b/internal/models/boil_queries_test.go index d82d8e1e..f4e9b958 100644 --- a/internal/models/boil_queries_test.go +++ b/internal/models/boil_queries_test.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models diff --git a/internal/models/boil_relationship_test.go b/internal/models/boil_relationship_test.go index 8f31f5ea..1e56334f 100644 --- a/internal/models/boil_relationship_test.go +++ b/internal/models/boil_relationship_test.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models diff --git a/internal/models/boil_suites_test.go b/internal/models/boil_suites_test.go index b9870892..e67cec36 100644 --- a/internal/models/boil_suites_test.go +++ b/internal/models/boil_suites_test.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models diff --git a/internal/models/boil_table_names.go b/internal/models/boil_table_names.go index 2118bf7f..7971ae37 100644 --- a/internal/models/boil_table_names.go +++ b/internal/models/boil_table_names.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models diff --git a/internal/models/boil_types.go b/internal/models/boil_types.go index 41f8390b..81684a7b 100644 --- a/internal/models/boil_types.go +++ b/internal/models/boil_types.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models diff --git a/internal/models/boil_view_names.go b/internal/models/boil_view_names.go index 3bd994fd..01d8b91f 100644 --- a/internal/models/boil_view_names.go +++ b/internal/models/boil_view_names.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models diff --git a/internal/models/password_reset_tokens.go b/internal/models/password_reset_tokens.go index a06f6620..78a43b14 100644 --- a/internal/models/password_reset_tokens.go +++ b/internal/models/password_reset_tokens.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models @@ -814,7 +814,7 @@ func (o PasswordResetTokenSlice) DeleteAll(ctx context.Context, exec boil.Contex } sql := "DELETE FROM \"password_reset_tokens\" WHERE " + - strmangle.WhereInClause(string(dialect.LQ), string(dialect.RQ), 1, passwordResetTokenPrimaryKeyColumns, len(o)) + strmangle.WhereClauseRepeated(string(dialect.LQ), string(dialect.RQ), 1, passwordResetTokenPrimaryKeyColumns, len(o)) if boil.IsDebug(ctx) { writer := boil.DebugWriterFrom(ctx) diff --git a/internal/models/password_reset_tokens_test.go b/internal/models/password_reset_tokens_test.go index c057adc5..f1d9654a 100644 --- a/internal/models/password_reset_tokens_test.go +++ b/internal/models/password_reset_tokens_test.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models diff --git a/internal/models/psql_main_test.go b/internal/models/psql_main_test.go index 8a503708..c97d99e0 100644 --- a/internal/models/psql_main_test.go +++ b/internal/models/psql_main_test.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models diff --git a/internal/models/psql_suites_test.go b/internal/models/psql_suites_test.go index 6a895692..3de3f433 100644 --- a/internal/models/psql_suites_test.go +++ b/internal/models/psql_suites_test.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models diff --git a/internal/models/psql_upsert.go b/internal/models/psql_upsert.go index 060c3da8..1d5fdcf2 100644 --- a/internal/models/psql_upsert.go +++ b/internal/models/psql_upsert.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models diff --git a/internal/models/push_tokens.go b/internal/models/push_tokens.go index 9182c948..5112fb29 100644 --- a/internal/models/push_tokens.go +++ b/internal/models/push_tokens.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models @@ -821,7 +821,7 @@ func (o PushTokenSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor } sql := "DELETE FROM \"push_tokens\" WHERE " + - strmangle.WhereInClause(string(dialect.LQ), string(dialect.RQ), 1, pushTokenPrimaryKeyColumns, len(o)) + strmangle.WhereClauseRepeated(string(dialect.LQ), string(dialect.RQ), 1, pushTokenPrimaryKeyColumns, len(o)) if boil.IsDebug(ctx) { writer := boil.DebugWriterFrom(ctx) diff --git a/internal/models/push_tokens_test.go b/internal/models/push_tokens_test.go index c9156201..c4c4433e 100644 --- a/internal/models/push_tokens_test.go +++ b/internal/models/push_tokens_test.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models diff --git a/internal/models/refresh_tokens.go b/internal/models/refresh_tokens.go index c87bdf1d..f38dca5c 100644 --- a/internal/models/refresh_tokens.go +++ b/internal/models/refresh_tokens.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models @@ -807,7 +807,7 @@ func (o RefreshTokenSlice) DeleteAll(ctx context.Context, exec boil.ContextExecu } sql := "DELETE FROM \"refresh_tokens\" WHERE " + - strmangle.WhereInClause(string(dialect.LQ), string(dialect.RQ), 1, refreshTokenPrimaryKeyColumns, len(o)) + strmangle.WhereClauseRepeated(string(dialect.LQ), string(dialect.RQ), 1, refreshTokenPrimaryKeyColumns, len(o)) if boil.IsDebug(ctx) { writer := boil.DebugWriterFrom(ctx) diff --git a/internal/models/refresh_tokens_test.go b/internal/models/refresh_tokens_test.go index eb1aa987..d7be3765 100644 --- a/internal/models/refresh_tokens_test.go +++ b/internal/models/refresh_tokens_test.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models diff --git a/internal/models/users.go b/internal/models/users.go index 9297aa93..95f40165 100644 --- a/internal/models/users.go +++ b/internal/models/users.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models @@ -1655,7 +1655,7 @@ func (o UserSlice) DeleteAll(ctx context.Context, exec boil.ContextExecutor) (in } sql := "DELETE FROM \"users\" WHERE " + - strmangle.WhereInClause(string(dialect.LQ), string(dialect.RQ), 1, userPrimaryKeyColumns, len(o)) + strmangle.WhereClauseRepeated(string(dialect.LQ), string(dialect.RQ), 1, userPrimaryKeyColumns, len(o)) if boil.IsDebug(ctx) { writer := boil.DebugWriterFrom(ctx) diff --git a/internal/models/users_test.go b/internal/models/users_test.go index dd01e2e9..1b28e902 100644 --- a/internal/models/users_test.go +++ b/internal/models/users_test.go @@ -1,4 +1,4 @@ -// Code generated by SQLBoiler 4.17.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// Code generated by SQLBoiler 4.18.0 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. // This file is meant to be re-generated in place and/or deleted at any time. package models