diff options
author | 2021-09-08 20:55:13 +0100 | |
---|---|---|
committer | 2021-09-08 20:55:13 +0100 | |
commit | 151069cff48f34f2f837220a8cdba9377ff354aa (patch) | |
tree | 6c8dd9e0c5b36e3acb2011f0ef69ac689c30000c /vendor/github.com/uptrace/bun/dialect/dialect.go | |
parent | update oauth library --> v4.3.2-SSB (diff) | |
parent | Merge pull request #195 from NyaaaWhatsUpDoc/update/bun-library (diff) | |
download | gotosocial-151069cff48f34f2f837220a8cdba9377ff354aa.tar.xz |
Merge remote-tracking branch 'upstream/main' into update/oauth-library
Signed-off-by: kim (grufwub) <grufwub@gmail.com>
Diffstat (limited to 'vendor/github.com/uptrace/bun/dialect/dialect.go')
-rw-r--r-- | vendor/github.com/uptrace/bun/dialect/dialect.go | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/vendor/github.com/uptrace/bun/dialect/dialect.go b/vendor/github.com/uptrace/bun/dialect/dialect.go index 9ff8b2461..f209f892e 100644 --- a/vendor/github.com/uptrace/bun/dialect/dialect.go +++ b/vendor/github.com/uptrace/bun/dialect/dialect.go @@ -8,10 +8,8 @@ func (n Name) String() string { return "pg" case SQLite: return "sqlite" - case MySQL5: - return "mysql5" - case MySQL8: - return "mysql8" + case MySQL: + return "mysql" default: return "invalid" } @@ -21,6 +19,5 @@ const ( Invalid Name = iota PG SQLite - MySQL5 - MySQL8 + MySQL ) |